SqlServer 基础知识 数据检索、查询排序语句

来源:asp之家 时间:2011-11-03 16:46:12 

代码如下:


--执行顺序 From Where Select
select * from
(select sal as salary,comm as commission from emp ) x where salary<5000
--得出 Name Work as a Job
select ename +' Work as a'+job as msg from emp where deptno=10
--如果员工工资小于2000返回UnderPaid 大于等于4k 返回OverPaid 之间返回OK
select ename,sal,
case when sal<2000 then 'UnderPaid'
when sal>=4000 then 'OverPaid'
else
'OK'
end
from emp
--从表中随机返回N条记录 newid()
--order by 字句中指定数字常量时,是要求根据select列表中相应位置的列排序
--order by 字句中用函数时,则按函数在没一行计算结果排序
select top 5 ename from emp order by newid()
--找空值is null
select * from emp where comm is null
--将空值转换为实际值
--解释:返回其参数中第一个非空表达式
--coalesce 联合,合并,结合.英音:[,kəuə'les]美音:[,koə'lɛs]
select coalesce(comm, 1),empNo from emp
--按模式搜索
--返回匹配特定子串或模式的行
select ename,job
from emp
where deptno in(10,20)
--按子串排序 按照职位字段的 最后两个字符排序
select ename, job from emp order by substring(job,len(job)-2,2)
--select top 2 len(job)-2 from emp
--select top 2 job from emp
--☆☆☆☆☆处理排序空值☆☆☆☆☆ [只能是大于0]
select ename ,sal,comm
from emp
order by 1 desc
-- 以降序或升序方式排序非空值,将空值放到最后,可以用case
select ename,sal,comm from
(
select ename ,sal,comm ,
case when comm is null then 0 else 1 end as A
from emp
) x
order by A desc ,comm desc



标签:数据检索,查询排序
0
投稿

猜你喜欢

  • Python3.7 新特性之dataclass装饰器

    2021-05-11 13:13:40
  • vue实现手机号码的校验实例代码(防抖函数的应用场景)

    2024-05-29 22:19:44
  • Python多线程编程(二):启动线程的两种方法

    2023-11-27 16:15:48
  • MySQL复制优点、原理详解

    2024-01-19 04:26:50
  • Python远程linux执行命令实现

    2023-11-17 14:48:14
  • Oracle中的translate函数和replace函数的用法详解

    2024-01-16 15:46:29
  • Python编写淘宝秒杀脚本

    2021-01-31 23:23:42
  • Django项目基础配置和基本使用过程解析

    2023-04-27 18:29:19
  • Python使用urlretrieve实现直接远程下载图片的示例代码

    2022-11-10 16:54:33
  • PHP连接MSSQL方法汇总

    2023-11-17 19:34:36
  • golang 中signal包的Notify用法说明

    2023-07-19 19:06:36
  • 10条改进你的CSS代码的方法

    2010-03-20 22:07:00
  • Python操作MongoDB数据库的方法示例

    2022-09-03 13:48:40
  • mysql 8.0.14 安装配置方法图文教程

    2024-01-22 10:28:08
  • MySQL分页Limit的优化过程实战

    2024-01-25 12:16:58
  • python使用opencv驱动摄像头的方法

    2023-08-26 17:00:49
  • matplotlib 纵坐标轴显示数据值的实例

    2021-10-02 12:55:43
  • javascript 深拷贝

    2024-05-25 15:18:49
  • Python Pillow Image Invert

    2023-10-02 12:33:30
  • Java正则表达式匹配字符串并提取中间值的方法实例

    2022-02-06 11:22:43
  • asp之家 网络编程 m.aspxhome.com