SQL條件判斷語句

2021-04-08 19:17:06 字數 760 閱讀 1676

select

case

when price is null then 'not yet priced'

when price < 10 then 'very reasonable title'

when price >= 10 and price < 20 then 'coffee table title'

else 'expensive book!'

end as "price category",

convert(varchar(20), title) as "shortened title"

from pubs.dbo.titles

order by price

第二種:

select au_fname, au_lname,

case state

when 'ca' then 'california'

when 'ks' then 'kansas'

when 'tn' then 'tennessee'

when 'or' then 'oregon'

when 'mi' then 'michigan'

when 'in' then 'indiana'

when 'md' then 'maryland'

when 'ut' then 'utah'

end as statename

from pubs.dbo.authors

order by au_lname

if條件判斷語句

如果表示式的值是true,則執行語句塊 否則跳過語句塊。equals 下面的例子使用到的,可以看看。字串判斷不能使用 要使用方法。用來判斷記憶體地址是否相等。輸入男女,輸出boy,girl system.out.println 請輸入男or女 scanner sc new scanner syste...

條件判斷語句

語法 if condition else if condition else示例 var age 20 if age 18 else語法 表示式1 表示式2 表示式3 如果表示式1的布林值為true,則執行表示式2,否則執行表示式3。是js語言中唯一一個需要三個運算元的運算子。示例 var age ...

條件判斷語句

條件判斷語句 使用條件判斷語句可以在執行某個語句之前進行判斷,如果條件成立才會執行語句,條件不成立則語句不執行。if語句 語法一 if 條件表示式 if語句在執行時,會先對條件表示式進行求值判斷,如果條件表示式的值為true,則執行if後的語句,如果條件表示式的值為false,則不會執行if後的語句...

條件判斷語句

條件判斷語句 if語句 input簡介 input 方法暫停程式等待使用者輸入,獲取輸入並賦給一個變數。input接受的引數都是字串 input會阻塞後面的程式 a input 請輸入 print 您輸入的值為 format a input輸入的值都是字串,因為python是一種強文字語言,不像ph...

php if 判斷條件語句,PHP條件判斷語句

php 條件語句 在您編寫 時,經常會希望為不同的決定執行不同的動作。您可以在 中使用條件語句來實現這一點。在 php 中,我們可以使用以下條件語句 if 語句 如果指定條件為真,則執行 if else 語句 如果條件為 true,則執行 如果條件為 false,則執行另一端 if elseif e...