在 MySQL 中一次性删除多个表

发布于 2024-10-16 08:57:43 字数 130 浏览 5 评论 0原文

如何通过一个命令从一个数据库中删除多个表。 类似于,

> use test; 
> drop table a,b,c;

其中 a、b、c 是数据库 test 中的表。

How to drop multiple tables from one single database at one command.
something like,

> use test; 
> drop table a,b,c;

where a,b,c are the tables from database test.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

2024-10-23 08:57:43

我们可以使用以下语法来删除多个表:

DROP TABLE IF EXISTS B,C,A;

这可以放在脚本的开头,而不是单独删除每个表。

We can use the following syntax to drop multiple tables:

DROP TABLE IF EXISTS B,C,A;

This can be placed in the beginning of the script instead of individually dropping each table.

一梦等七年七年为一梦 2024-10-23 08:57:43
SET foreign_key_checks = 0;
DROP TABLE IF EXISTS a,b,c;
SET foreign_key_checks = 1;

这样您就不必担心它们是否按正确的顺序放置,也不必担心它们是否确实存在。

注意,这仅适用于 MySQL(如问题中所示)。其他数据库可能有不同的方法来执行此操作。

SET foreign_key_checks = 0;
DROP TABLE IF EXISTS a,b,c;
SET foreign_key_checks = 1;

Then you do not have to worry about dropping them in the correct order, nor whether they actually exist.

N.B. this is for MySQL only (as in the question). Other databases likely have different methods for doing this.

不离久伴 2024-10-23 08:57:43

如果有很多表要删除,这是一种懒惰的方法。

  1. 使用下面的方法获取表格

    • 对于 SQL Server - SELECT CONCAT(name,',') Table_Name FROM SYS.tables;
    • 对于oralce - SELECT CONCAT(TABLE_NAME,',') FROM SYS.ALL_TABLES;
  2. 从结果集中复制并粘贴表名称,并将其粘贴到 DROP 命令之后。

A lazy way of doing this if there are alot of tables to be deleted.

  1. Get table using the below

    • For sql server - SELECT CONCAT(name,',') Table_Name FROM SYS.tables;
    • For oralce - SELECT CONCAT(TABLE_NAME,',') FROM SYS.ALL_TABLES;
  2. Copy and paste the table names from the result set and paste it after the DROP command.

┊风居住的梦幻卍 2024-10-23 08:57:43
declare @sql1 nvarchar(max) 
SELECT @sql1 =
  STUFF(
         (
           select ' drop table dbo.[' + name + ']'

           FROM sys.sysobjects AS sobjects
           WHERE (xtype = 'U') AND (name LIKE 'GROUP_BASE_NEW_WORK_%')
           for xml path('')
        ),
     1, 1, '')

  execute sp_executesql @sql1
declare @sql1 nvarchar(max) 
SELECT @sql1 =
  STUFF(
         (
           select ' drop table dbo.[' + name + ']'

           FROM sys.sysobjects AS sobjects
           WHERE (xtype = 'U') AND (name LIKE 'GROUP_BASE_NEW_WORK_%')
           for xml path('')
        ),
     1, 1, '')

  execute sp_executesql @sql1
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文