select 的字段为空,给他显示默认值:
解决办法一:
select id,name,(case when level is null then 0 else level end) as a from table
本文共 158 字,大约阅读时间需要 1 分钟。
select 的字段为空,给他显示默认值:
解决办法一:
select id,name,(case when level is null then 0 else level end) as a from table
转载于:https://www.cnblogs.com/zsg88/p/9393982.html