SqlServer2012-创建表、删除表 增加字段 删除字段操作
新建表:
create table [表名]
(
[自动编号字段] int IDENTITY (1,1) PRIMARY KEY ,
[字段1] nVarChar(50) default \'默认值\' null ,
[字段2] ntext null ,
[字段3] datetime,
[字段4] money null ,
[字段5] int default 0,
[字段6] Decimal (1...
原创
2019-10-17 10:19:57 ·
478 阅读 ·
0 评论