我想用query检查条件
select min(date_format(date(time_stamp),'%Y-%m-%d'))as time_stamp,
'FN' period,
null count ,
null sheetno,
if (count(min(date_format(date(time_stamp),'%Y-%m-%d')))=1 ,200,0) as amount
from omr_verification
我想计算时间戳是否可用意味着金额=200,否则为0
1条答案
按热度按时间dm7nw8vv1#
您可以在select中使用if条件或case。