我只是在使用 SQL Server Management Studio Express 学习一些 SQL Server,我希望在代码中为这部分添加一个自动增量stu_id integer not null primary key
所以下面的代码是我尝试过的,但不起作用。
另外,一旦我成功添加了它,如何将值写入表中?由于它是一个自动增量,我是否只是将该部分留空 - 像这样?
values('', 'James', 'DACLV6', '$2000');
==================The Full Code here=========================
create database firstTest
use firstTest
create table studentDetails
(stu_id integer not null primary key SQL AUTO INCREMENT, stu_name varchar(50), stu_course varchar(20), stu_fees varchar(20));
select * from studentDetails
Insert into studentDetails
(stu_id, stu_name, stu_course, stu_fees)
values('1', 'James', 'DACLV6', '$2000');
提前致谢。