主题:一家软件公司笔试考试题
beijinghunansdj
[专家分:190] 发布于 2007-01-17 09:34:00
有2道实在不会~题目是这样的:
1.用sql语句在sql server 2000查看数据库版本(让我抓狂...)
2.用一条sql语句查看表Student第31-41条记录内容,表中id字段是自动增长的int型字段,但是不是连续的。
其他题目我都做出来了,所以没记...哪位大哥会?
回复列表 (共4个回复)
沙发
ganymebe [专家分:710] 发布于 2007-01-17 15:07:00
1:select @@version
2:select *,identity(int,1,1) as 'id' into newtable from student
select * from student where id betwwen 31 and 41
板凳
菜鸭 [专家分:5120] 发布于 2007-01-17 15:21:00
2.select top 11 * from (select top 41 * from student order by id) a order by a.id desc
3 楼
233238447 [专家分:1350] 发布于 2007-01-21 18:19:00
2.
select top 10 from tablename where id not in(select top 31 id from tablename)
我来回复