当前位置: 首页 > 工具软件 > TableSum > 使用案例 >

sum函数返回值为空

凤经国
2023-12-01

sum()函数返回值为null

一、SELECT IFNULL(sum(列名),0) from table where id= ‘xxxxx’;

二、SELECT COALESCE(sum(列名),0) from table where id = ‘xxxxx’;

 类似资料: