问题描述:
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;
问题描述:
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;