摘要:
--至查询student表的第3、4行--分页查询 ★必须要用主键Sno来排除,防止重复select *from Studentselect top 2 *from Student where Sno not in(select top 2 Sno from Student)--第二页,屏蔽掉当前页... 阅读全文
摘要:
create table 仓库表( 仓库号 varchar(50) primary key not null, 城市 varchar(50) not null, 面积 int not null,)insert into 仓库表 values ('wh1','北京',370)insert into... 阅读全文
摘要:
create table Student--3rd再次执行( Sno int primary key not null,--学号主键 Sname varchar(50) not null,--学生姓名 Ssex varchar(50) not null,--学生性别 Sbirthda... 阅读全文