您可以通过在表中指定数据库名称来 DROP TABLE IF EXISTS 吗?
我试图使用以下查询语句删除数据库中的表:
mysql_query('DROP TABLE IF EXISTS "dbName.tableName"') or die(mysql_error());
但我不断收到错误。有谁知道指定 dbName.tableName 是否无效?
I am trying to drop a table in a database with the following query statement:
mysql_query('DROP TABLE IF EXISTS "dbName.tableName"') or die(mysql_error());
But I keep getting an error. Does anyone know if specifying the dbName.tableName is invalid?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您应该使用反引号而不是双引号,如下所示:
You should use backticks instead of double quotes like this:
您不能使用双引号来引用数据库/表名称,而是将它们不加引号或使用反引号。但要回答你的问题,是的,指定数据库名称是完全有效的。
You can't use double quotes to quote db/table names, instead you either leave them unquoted or use backticks. But to answer your question, yes it is perfectly valid to specify the database name.