写有效率的sql 之学习 1

来源:互联网 发布:sql数据库安全防护 编辑:程序博客网 时间:2024/05/17 01:48

create table tb1

(

    col1 int identity(1,1) primary key,

    col2 int not null,

    col3 varchar(64) not null

)

 

说明 : 其中identity(1,1)表示一个整型自增量型数据类型,第一个记录此项值为1,以后每增加一条记录,此项数就自动加一。

原创粉丝点击