私はこのSQLを実行しようとしています:
$sql="SELECT LEAST(".implode(',',$column_list).") as num FROM callplandata WHERE num IS NOT 0 ";
エラー:You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '0' at line 1
私も試してみました
$sql="SELECT LEAST(".implode(',',$column_list).") as num FROM callplandata WHERE num IS NOT NULL ";
エラー:Unknown column 'num' in 'where clause'
しかし、それぞれに上記のエラーが発生しています。
どうすればこれを回避できますか - 0 ではない値を表示しようとしています