删除表消息的错误消息

时间:2014-03-29 06:47:55

标签: mysql

我用

DROP TABLE IF EXISTS `mydb`.`mytable`;

要删除现有表,该表将被删除,但得到以下反馈

Query OK, 0 rows affected, 1 warning (0.00 sec)

为什么我收到警告信息?

1 个答案:

答案 0 :(得分:2)

mysql语句中,Drop Table if exists NO_SUCH_TABLE这样的语句会产生警告,因此这可能会导致像这样的脚本。

所以不要担心这个。

请参阅以下链接,了解详细信息:

How do I show a MySQL warning that just happened?