添加自動遞增我剛學與SQL Server Management Studio中快速和代碼,我想一個自動遞增到這個部分stu_id integer not null primary key
SQL Server Management Studio中 - 在代碼
所以下面的代碼是某些SQL Server我已經嘗試過,並沒有工作。
另外,一旦我確實已經成功添加,我該如何將值寫入表中? 因爲它是一個自動增量,我只是把這個部分留空 - 就像這樣?
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');
在此先感謝。
這確實是工作插入 - 沒有時間之前對此發表評論,但非常感謝:-) –