SqlServer 基礎知識 資料檢索、查詢排序語句

來源:互聯網
上載者:User

複製代碼 代碼如下:--執行順序 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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.