テーブルを変更する前に、値を更新してみてください。
目標は、空の値(intに変換できない)があるフィールドに「0」の値を設定することです
update ip
set isp = '0' where trim(coalesce(isp, '')) = '';
ispがnull許容でない場合は、合体関数を削除できます。
update ip
set isp = '0' where trim(isp) = '';
テーブルを変更する前に、値を更新してみてください。
目標は、空の値(intに変換できない)があるフィールドに「0」の値を設定することです
update ip
set isp = '0' where trim(coalesce(isp, '')) = '';
ispがnull許容でない場合は、合体関数を削除できます。
update ip
set isp = '0' where trim(isp) = '';