摘要:
一:子查询一个常见应用,分页查询1.每页设置为多少条(5条);2.要找第几页(3) 这里每页5条,要显示第3页的内容,需要显示前10条内容之后的最上面5条select top 5*from car where code not in(select top 10 code from car)2.取总... 阅读全文
摘要:
select * from studentselect * from teacherselect * from courseselect * from score上面原有几个新建的表从中查询一些数据--1、 查询Student表中的所有记录的Sname、Ssex和Class列。select Snam... 阅读全文