タイトルが示すように..このクエリでエラーが見つかりませんが、それでも正常に動作しません
SELECT column_1, column_2, column_3
from `table_1`
WHERE `column_4` = '3'
order by id limit 1,(count(select table_name from information_schema.tables))
助けてください
このエラーを与える
構文エラーまたはアクセス違反: 1064 SQL 構文にエラーがあります。MySQL サーバーのバージョンに対応するマニュアルで、1 行目の '(count(select table_name from information_schema.tables))' 付近で使用する正しい構文を確認してください。
これも機能していません
SELECT column_1, column_2, column_3
from `table_1`
WHERE `column_4` = '3'
order by id limit 1,(select count(table_name) from information_schema.tables)