我有一张带type
字段的桌子。
如何在查询中检查此字段:
type
如果== 'a'我想检查一下
然后bes
= amount
, bed
= '-'
否则bed
= amount
, bes
= '-'
bes 和 bed 在我的表中并不存在,但数量是 (int)
这是我的尝试:
SELECT billing.*,
CASE billing.type WHEN 'A' THEN billing.amount AS bes, '-' AS bed ELSE billing.amount AS bed, '-' AS bes END
FROM billing
...我的搜索没有用
任何解决方案...