摘要: 用一个SQL语句完成以下查询,从book表中查询出price,当price在10到20之间(包含10和20)时返回“10 to 20”,当price为空返回“Unknown”,其他情况返回原price的值(群硕招聘)select case when CONVERT(int, price)>=10 and CONVERT(int, price)=10 and CONVERT(int, price)<=30 then '10 to 20' when price is null then 'Unknown' else priceend from Book参 阅读全文
posted @ 2013-05-07 23:34 心亦 阅读(2823) 评论(0) 推荐(0) 编辑