sql2005提示错误怎么改?消息 102,级别 15,状态 1,第 2 行 'auto_increment' 附近有语法错误。
sql2005提示错误怎么改?消息 102,级别 15,状态 1,第 2 行 'auto_increment' 附近有语法错误。
日期:2022-04-10 06:10:48 人气:1
//修改了一下,有几个错误 'auto_increment' 自动增加,在低版本的SQL 中不识别这个关键字
// identity(1,1) 自增字段,自动添加自增序列,起始序列为1,每次递增也是1
create table t_admin(
id int primary key identity(1,1),
// identity(1,1) 自增字段,自动添加自增序列,起始序列为1,每次递增也是1
create table t_admin(
id int primary key identity(1,1),