sql字段为int类型,sql语句怎么写
4个回答
展开全部
ID一般设置为自动标识列
use
(数据库名)
go
create
table
(表名)
(
/*第一种写法*/
Id
int
identity(1,1)
not
null,--整型,自动标识列,不能为空
/*第二种写法*/
Id
int
not
null,
--整型,不能为空
)
go
use
(数据库名)
go
create
table
(表名)
(
/*第一种写法*/
Id
int
identity(1,1)
not
null,--整型,自动标识列,不能为空
/*第二种写法*/
Id
int
not
null,
--整型,不能为空
)
go
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
id为int类型,不为负数,但是一般有一个id字段,就需要将其设置为标识列,你可以这样写
id
int
identity(1,1)
not
null
id
int
identity(1,1)
not
null
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-05-22
展开全部
如果是创建的话
首先create database <数据库名>
然后 create table <表名>
(
<列名> <数据类型int> <是否为空 null or not null>
)
首先create database <数据库名>
然后 create table <表名>
(
<列名> <数据类型int> <是否为空 null or not null>
)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-05-22
展开全部
楼主的要求是id不为负数,也就是说需要check约束,在id int后面加上
check(id>=0)
check(id>=0)
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询