Why does DROP TABLE IF EXISTS cause a MySQL warning if the table doesn't exist?

后端 未结 0 579
忘了有多久
忘了有多久 2021-01-30 01:50

Why does dropping a non-existent table IF EXISTS cause a warning?

CREATE DATABASE `test`;
USE `test`;
DROP TABLE IF EXISTS `nonexistent_table`;
SHOW          


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题