可以用sql语句举个列子来说明一下,比如我需要创建一个Student表:CREATE TABLE Student(Sno char(7) PRIMARY KEY,Sname char(10) NOT NULL,Ssex char(2),Sage tinyint,Sdept char(20))