批量操作

生成批量删除命令

SELECT concat('DROP TABLE IF EXISTS ', table_name, ';')
FROM information_schema.tables
WHERE table_schema = 'databaseName';
-- databaseName为数据库名称

查询结果如下,将结果复制出来执行便可。
image

批量修改某一字段内容

update test set content=REPLACE(content,'http://localhost','http://test.com');
posted @ 2021-05-20 11:05  贰竹  阅读(65)  评论(0编辑  收藏  举报