数据库实验——SQL语句查询
数据库实验课的SQL语句查询,是《数据库系统概论(第5版)》的第三章的全部例题
DBMS是SQL Server
create table Student
(Sno char(9) primary key,
Sname char(20) unique, --Sname取唯一值
Ssex char(2),
Sage smallint,
Sdept char(20)
);
create ta...
原创
2019-01-12 14:32:19 ·
2085 阅读 ·
0 评论