在mysql中,如果表存在,如何避免选择

发布于 2024-11-30 02:36:15 字数 200 浏览 2 评论 0原文

假设我运行以下查询:

CREATE TEMPORARY TABLE IF NOT EXISTS FISH SELECT 'a';

它将创建一个其中包含“a”的临时表。现在,如果我再次运行查询,该表将不会重新创建,但选择将再次发生 - 因此,该表中将有两次“a”。如何防止这种情况发生,即如果表存在,则不应执行任何操作?

Let's say I run the following query:

CREATE TEMPORARY TABLE IF NOT EXISTS FISH SELECT 'a';

it will create a temporary table with 'a' in it. Now, if I run the query again, the table will not be recreated, but the select will happen again - so, the table will have 'a' twice in it. How do I prevent this from happening, i.e. if the table exists, no action should be carried out?

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

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

发布评论

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

评论(1

旧故 2024-12-07 02:36:15

此行为在手册中明确记录,引用:

对于 CREATE TABLE ... SELECT,如果给出 IF NOT EXISTS 并且表已经存在,MySQL 将按如下方式处理该语句:

  • CREATE TABLE 部分中给出的表定义将被忽略。即使定义与现有表的定义不匹配,也不会发生错误。

  • 如果表中的列数与 SELECT 部分生成的列数不匹配,则所选值将分配给最右边的列。例如,如果表包含 n 列并且 SELECT 生成 m 列,其中 m < n,将选定的值分配给表中最右边的 m 列。每个初始 n – m 列都分配有其默认值,该值可以是在列定义中显式指定的值,也可以是隐式列数据类型默认值(如果定义不包含默认值)。

  • 如果启用了严格 SQL 模式,并且这些初始列中的任何一个都没有显式默认值,则语句将失败并出现错误。

并且没有提到任何方法来改变这种行为,所以我想你唯一的解决方案是首先使用单独的查询检查表是否存在,然后CREATE...SELECT表(如果不存在) 。

This behavior is explicitly documented in the manual, quote:

For CREATE TABLE ... SELECT, if IF NOT EXISTS is given and the table already exists, MySQL handles the statement as follows:

  • The table definition given in the CREATE TABLE part is ignored. No error occurs, even if the definition does not match that of the existing table.

  • If there is a mismatch between the number of columns in the table and the number of columns produced by the SELECT part, the selected values are assigned to the rightmost columns. For example, if the table contains n columns and the SELECT produces m columns, where m < n, the selected values are assigned to the m rightmost columns in the table. Each of the initial n – m columns is assigned its default value, either that specified explicitly in the column definition or the implicit column data type default if the definition contains no default.

  • If strict SQL mode is enabled and any of these initial columns do not have an explicit default value, the statement fails with an error.

and there is no mention of any method to change this behavior so I suppose your only solution is to first check for table's existence with a separate query then CREATE...SELECT the table if it doesn't exist.

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