标签: mysql syntax-error
SHOW TABLES NOT LIKE 'wp_2_%'
这个SQL查询对我不起作用
答案 0 :(得分:3)
您无法在not like语句中直接使用show tables,但您可以将其放在where条款中:
not like
show tables
where
SHOW TABLES WHERE tables_in_db NOT LIKE 'wp_2_%';
答案 1 :(得分:1)
是的,它应该不起作用。 SHOW TABLES根本不允许使用NOT。
SHOW TABLES
NOT
http://dev.mysql.com/doc/refman/5.7/en/show-tables.html