T-SQL語法紀錄

這篇記錄count 、case...end、兩個語法。

當想知道某個select有幾筆時,可以下
select COUNT('')
from table
where 條件
當根據不同select的值最對應動作時,可以用到case end語法
select name,
(case grade
when '1' then '一年級'
when '2' then '二年級'
when '3' then '三年級'
end) as taiwan_grade,
from  table
where 條件

留言

這個網誌中的熱門文章

Python-相關係數矩陣實作(python-correlation matrix )

ASP.NET-後端將值傳給javascript

ASP.NET-FileUpload上傳後自動觸發button click(FileUpload upload auto trigger button click)