当前位置:首页 » 编程语言 » sql查询排序
扩展阅读
webinf下怎么引入js 2023-08-31 21:54:13
堡垒机怎么打开web 2023-08-31 21:54:11

sql查询排序

发布时间: 2022-01-19 08:54:38

sql查询的排序问题

叶子部门是什么意思?我理解的不知道对不对,
楼主所说的叶子部门应该是本身没有子部门,并且有父部门的部门吧 ?如果没有父部门就无从谈起按父部门排序了。

在排序的条件使用子查询即可。
select *
from 表 a
where fudepartment is not null and not exists(select * from 表 where fudepartment=a.id)
order by (select id from 表 where id=a.fudepartment),sunxu
这个查询结果,会首先按父部门的部门id进行排序,之后再按各子部门在父部门中的顺序排序。不知道是否符合楼主的需要。
另外如果,叶子部门可以有子部门,把not exists的条件去掉即可。
select *
from 表 a
where fudepartment is not null
order by (select id from 表 where id=a.fudepartment),sunxu

㈡ SQL语句排序

加入数据0,0,0,1,2,3,4,5,6 在tablezhong的id column

sql 如下:

SELECT id FROM table ORDER BY Decode(id,0,999999999,id);

如果是0,给他一个很大的值,如果不是0,默认。 这样派出来的结果,就是你要的了。

可行。。

㈢ SQL如何条件顺序排列查询结果

用CASE进行转义就可以了
SELECT T1.A,T2.B,T1.C,T2.C
FROM T1 INNER JOIN T2
ON T1.C= T2.C
WHERE T1.A IN ('11','55','33','88')
ORDER BY CASE T1.A
WHEN '11' THEN 1
WHEN '55' THEN 2
WHEN '33' THEN 3
WHEN '88' THEN 4
END

意思是将T1.A的值根据条件转为1,2,3,4这样的数据来排序

你测试一下是不是你要的结果

㈣ SQL语句实现一个查询,并排序。

select * from Client c where c.telephone like '%9_' and c.address like '%余杭%' ordery by c.id desc;

㈤ sql查询结果如何按照查询顺序排序

这是不可能的,除非你一个一个查,最后连起来

㈥ SQL查询语句默认排序规律

select a.*,b.*
(可以选择字段名称,注意两个表中重名的字段一定要加a.或b.,其他不重名的可以不加,但是为了以后的拓展,最好都加)
from [表A] as a left join [表B] as b
on a.$key=b.key
order by b.cid desc
(这样的话当b表中的b.key不在a表中的时候,b.*的字段都是空的,如果想改成你期望的类型,可以使用isnull函数,比如isnull(b.key,0)或 isnull(b.key,'无').

㈦ SQL语句条件查询排序问题

select top 5 c_name,c_stu from class where c_name like '*网络*' and c_stu>30 and c_type=true order by c_stu asc,c_type desc 用了like 就不能用 相等的方法!

㈧ SQL 查询语句排序

select distinct format(pptime,'yyyy-mm-dd') as rq from datetimes order by format(pptime,'yyyy-mm-dd')