2013-07-02 96 views

回答

2

嘗試一個CASE例如

select 
    case 
    when 'hi' in ('hi') then 1 else 0 
end as hi 
2

我相信你可以做的是使用CASE語句,因此返回的條件值作爲位:

select case when 'hi' in ('hi') then 1 else 0 end as hi 
相關問題