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

MySQL 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;

 类似资料: