摘要:
Sql Server 增加字段、修改字段、修改类型、修改默认值 1、修改字段名: alter table 表名 rename column A to B 2、修改字段类型: alter table 表名 alter column 字段名 type not null 3、修改字段默认值 alter t 阅读全文
摘要:
SQL SERVER 索引名前缀代表的意思 PK - Primary Key IX - Non-Unique Index AK - Unique Index (AX should have been AK (Alternate Key)) CK - Check Constraint DF - Def 阅读全文