关于mysql的语句 现在想实现查询数据的时候,判断其中一个是否为空,为空赋值1否则赋值0

2024-11-17 07:43:41
推荐回答(1个)
回答1:

select id,name,case when phone is null then 0 else 1 end as phone from table