0
select *
, AreaLeftOver=(KmSquared) % (20761)
, WhalesUnit = (KmSquared)/(20761)
, WhalesComparison= case when((KmSquared)/(20761) * (KmSquared) % (20761) )>0 then (KmSquared)/(20761) * (KmSquared) % (20761) else 'Smaller' end
from CountriesByArea
order by Country
如何才能實現WhalesComparison
的描述性列?改爲描述性列值
我試過使用大小寫的語句,但它給了我int值,它引發了從'varchar到bigint'的轉換錯誤。
注:我只有國家,KmSquared列休息我從計算函數派生。
你可以提供一些數據,例如,一個基本的架構和你想要的輸出? – Shawn
輸出:'31 x鯨魚加上3909平方公里鯨爲比較 我不需要值 –