私はmysqlの問題で立ち往生しています。私の例は次のとおりです
select * from table where id <= (select id from another_table)
another_table が何らかの数値を返す場合はうまく機能しますが、値が null の場合はどうなりますか? null値の場合another_tableなら全レコードを選択したい
すなわち
(select id from another_table) is null
になるか、そのように動作する必要があります
select * from table where