怎样在MYSQL中删除特定表
SELECT *
FROM information_schema.tables
WHERE table_name LIKE 'cdb2_%'
查看查询结果,如果全部都是你想删除的表,就运行
DELETE FROM information_schema.tables
WHERE table_name LIKE 'cdb2_%'
来删除
最好不要直接删除,那样很危险. 提示的意思是你权限不够.
怎样在MYSQL中删除特定表
SELECT *
FROM information_schema.tables
WHERE table_name LIKE 'cdb2_%'
查看查询结果,如果全部都是你想删除的表,就运行
DELETE FROM information_schema.tables
WHERE table_name LIKE 'cdb2_%'
来删除
最好不要直接删除,那样很危险. 提示的意思是你权限不够.