正如标题所说..我在这个查询中找不到错误,但它仍然无法正常工作
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)