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

sql 1582 - Incorrect parameter count in the call to native function ‘ISNULL‘

淳于煌
2023-12-01

问题描述:
1582 - Incorrect parameter count in the call to native function 'ISNULL'

问题分析:
1、MySQL不支持ISNULL(),因为ISNULL()只有SQL Server才有。

解决办法:使用IFNULL()替换ISNULL()。

select ifnull(area_id,'') area_id from t_area;
 

 类似资料:

相关阅读

相关文章

相关问答