欢迎大家在这里学习sql server新建表!下面是我们给大家整理出来的精彩内容。希望大家在这里学习!
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 (12,4) default 0,
[字段7] image null ,
)
好了,sql server新建表精彩内容就给大家介绍到这里了。希望大家继续关注我们的网站!
相关推荐:
tempdb的使用规范是什么