⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 有续排序与无续排序.txt

📁 SQL语言常用的一些命令各代码
💻 TXT
字号:
/*************无续取某行上一条记录****************/
/*测试表*/
create table  #a (a int,b int,c char(1))
insert into #a select 3,3,'a'
insert into #a select 2,3,'b'
insert into #a select 1,3,'c'
insert into #a select 5,3,'d'
insert into #a select 4,3,'e'
insert into #a select 6,3,'o'
insert into #a select 7,3,'x'
insert into #a select 100,3,'z'
insert into #a select 90,3,'p'
/*借助临时表*/
select identity(int,1,1)as id,checksum(*)as t,* into #b from #a
/*利用临时表排序*/
select a,b,c from #b where id=(select id-1 from #b where t=(select checksum(*) from #a where c='x'))
/*******************有顺序可以比较大小**********************/
create table  #a (a int,b int,c char(1))
insert into #a select 3,3,'a'
insert into #a select 2,3,'b'
insert into #a select 1,3,'c'
insert into #a select 5,3,'d'
insert into #a select 4,3,'e'
insert into #a select 6,3,'o'
insert into #a select 7,3,'x'
insert into #a select 100,3,'z'
insert into #a select 90,3,'p'
select top 1 * from #a where a<(select a from #a where c='x') order by a desc

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -