在不使用“select from"的情况下检查 MySQL 表是否存在;句法?

Check if MySQL table exists without using quot;select fromquot; syntax?(在不使用“select from的情况下检查 MySQL 表是否存在;句法?)
本文介绍了在不使用“select from"的情况下检查 MySQL 表是否存在;句法?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有一种方法可以检查表是否存在而无需从中选择和检查值?

Is there a way to check if a table exists without selecting and checking values from it?

也就是说,我知道我可以去 SELECT testcol FROM testtable 并检查返回的字段数,但似乎必须有更直接/优雅的方法来做到这一点.

That is, I know I can go SELECT testcol FROM testtable and check the count of fields returned, but it seems there must be a more direct / elegant way to do it.

推荐答案

如果要正确,请使用 INFORMATION_SCHEMA.

If you want to be correct, use INFORMATION_SCHEMA.

SELECT * 
FROM information_schema.tables
WHERE table_schema = 'yourdb' 
    AND table_name = 'testtable'
LIMIT 1;

或者,您可以使用 SHOW TABLES

SHOW TABLES LIKE 'yourtable';

如果结果集中有一行,则表存在.

If there is a row in the resultset, table exists.

这篇关于在不使用“select from"的情况下检查 MySQL 表是否存在;句法?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)