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');
前もって感謝します。