我试图在phpmyadmin中执行此sql查询而没有任何运气。 我收到此错误:#2014 - 命令不同步;你现在不能运行这个命令
当我单独运行子查询时,它工作正常。
这是我的Mysql查询:
SELECT * FROM `library` , `geo_regions`, `tool_list`
WHERE tool_list.name =
(
SELECT library.name FROM `library` , `geo_regions`
WHERE `city_id` is NULL
and (
and (`full_address` not like CONCAT('%', geo_regions.name, '%'))
and (`full_address` not like CONCAT('%', geo_regions.iso3166_2_code_maxmind, '%'))
)
and (geo_regions.id = library.region_id)
)
任何人都知道问题是什么,我该如何解决?