MySQL怎么show tables列出所有表?

文章导读
上一个 测验 下一个 MySQL SHOW TABLES 语句 在 MySQL 中,我们使用 SHOW TABLES 命令来检索特定数据库中存在的表名称。此命令在各种情况下都很有用,例如:
📋 目录
  1. MySQL SHOW TABLES 语句
  2. 带有 FULL 修饰符的 SHOW TABLES
  3. 不同数据库中的 SHOW TABLES
  4. 使用模式匹配的 SHOW TABLES
  5. 使用客户端程序显示表
A A

MySQL − 显示表

目录
  • MySQL SHOW TABLES 语句
  • 带有 FULL 修饰符的 SHOW TABLES
  • 不同数据库中的 SHOW TABLES
  • 使用模式匹配的 SHOW TABLES
  • 使用客户端程序显示表


上一个
测验
下一个

MySQL SHOW TABLES 语句

在 MySQL 中,我们使用 SHOW TABLES 命令来检索特定数据库中存在的表名称。此命令在各种情况下都很有用,例如:

  • 当我们想要查看数据库中表的名称,以验证特定表是否存在时。

  • 当我们想要显示数据库中每个表的附加信息时,我们使用带有 MySQL FULL 修饰符的 SHOW TABLES 命令。

  • 此外,我们可以使用带有 WILDCARDS 的 SHOW TABLES 命令来过滤并仅显示匹配特定模式的表。

语法

以下是 MySQL SHOW TABLES 命令的语法:

SHOW TABLES;

在进行示例之前,假设以下表存在于两个数据库 testdb1testdb2 中:

数据库 testdb1 testdb2
employee_remarks employee_age
employee_salary students_marks
students_attendance
students_fees
students_remarks

示例

首先,我们将数据库切换到 testdb1,以对其执行 SHOW TABLES 操作。

mysql> USE testdb1;
Database changed

现在,执行以下查询以列出 testdb1 数据库中的所有表。

SHOW TABLES;

输出

以下是 testdb1 数据库中存在的表:

Tables_in_testdb1
employee_remarks
employee_salary
students_attendance
students_fees
students_remarks

带有 FULL 修饰符的 SHOW TABLES

在 MySQL 中,我们可以使用可选的 FULL 修饰符与 SHOW TABLES 命令一起使用,以显示第二列输出,该列包含数据库中表的附加信息,例如它们的类型:BASE TABLE 表示表,VIEW 表示视图,或 SYSTEM VIEW 表示 INFORMATION_SCHEMA 表。

示例

在以下查询中,我们使用 FULL 修饰符与 SHOW TABLES 命令一起,列出 testdb1 数据库中的表及其类型。

SHOW FULL TABLES;

输出

以下是上述查询的输出:

Tables_in_testdb1 Table_type
employee_remarks BASE TABLE
employee_salary BASE TABLE
students_attendance BASE TABLE
students_fees BASE TABLE
students_remarks BASE TABLE

不同数据库中的 SHOW TABLES

在 MySQL 中,我们可以检索另一个数据库中存在的表列表。为此,我们需要使用 IN 操作符或 FROM 子句与 SHOW TABLES 语句结合使用。

示例

在以下查询中,我们使用带有 IN 操作符的 SHOW TABLES 命令,获取另一个数据库 testdb2 中存在的表列表。

SHOW TABLES IN testdb2;

输出

以下是 testdb2 数据库中存在的表名称:

Tables_in_testdb2
employee_age
students_marks

示例

我们也可以使用带有 FROM 子句的 SHOW TABLES 命令执行上述操作。

SHOW TABLES FROM testdb2;

输出

正如我们所见,两个输出结果相同。

Tables_in_testdb2
employee_age
students_marks

使用模式匹配的 SHOW TABLES

在数据库中存在大量表的一些场景下,如果我们只想检索特定的表,可以使用 通配符字符 如 '%' 等与 LIKE 操作符 结合。这些通配符将过滤并仅显示匹配特定模式的表。

示例

在以下查询中,我们使用 LIKE 操作符与 SHOW TABLES 命令来选择 testdb1 数据库中名称以 "stud" 开头的表。

SHOW TABLES IN testdb1 LIKE "stud%";

输出

以下是 testdb1 数据库中名称以 "stud" 开头的表 −

Tables_in_testdb1 (stud%)
students_attendance
students_fees
students_remarks

示例

这里,我们尝试从 testdb2 数据库中检索名称以 "stud" 开头的表 −

SHOW TABLES IN testdb2 LIKE "stud%";

输出

这将产生以下结果 −

Tables_in_testdb2 (stud%)
students_marks

示例

我们使用 SHOW TABLES 结合 WHERE 子句来检查 testdb1 数据库中是否存在名为 "employee_remarks" 的表 −

SHOW TABLES FROM testdb1 WHERE Tables_in_testdb1 = "employee_remarks";

输出

这将产生以下结果 −

Tables_in_testdb1
employee_remarks

使用客户端程序显示表

除了使用 MySQL 查询显示 MySQL 数据库中存在的表列表外,我们还可以使用客户端程序来执行 SHOW TABLES 操作。

语法

以下是在各种编程语言中显示 MySQL 数据库中表列表的语法 −

PHP NodeJS Java Python

通过 PHP 程序显示 MySQL 数据库中的表列表,我们需要使用 mysqli 函数 query() 执行 SHOW TABLES 语句,如下所示 −

$sql = "SHOW TABLES FROM DATABASE";
$mysqli->query($sql);

通过 Node.js 程序显示 MySQL 数据库中的表列表,我们需要使用 mysql2 库的 query() 函数执行 SHOW TABLES 语句,如下所示 −

sql= "SHOW TABLES FROM DATABASE";
con.query(sql);

通过 Java 程序显示 MySQL 数据库中的表列表,我们需要使用 JDBC 函数 executeUpdate() 执行 SHOW TABLES 语句,如下所示 −

String sql = "SHOW TABLES FROM DATABASE";
statement.executeQuery(sql);

通过 Python 程序显示 MySQL 数据库中的表列表,我们需要使用 MySQL Connector/Pythonexecute() 函数执行 SHOW TABLES 语句,如下所示 −

show_table_query = "SHOW TABLES FROM DATABASE"
cursorObj.execute(show_table_query);

示例

以下是相应的程序 −

PHP NodeJS Java Python
$dbhost = 'localhost';
$dbuser = 'root';
$dbpass = 'password';
$dbname = 'TUTORIALS';
$mysqli = new mysqli($dbhost, $dbuser, $dbpass, $dbname);

if ($mysqli->connect_errno) {
    printf("Connect failed: %s
", $mysqli->connect_error); exit(); } // printf('Connected successfully.
'); $sql = "SHOW TABLES FROM TUTORIALS"; if ($result = $mysqli->query($sql)) { printf("Show table executed successfully.
"); while ($row = mysqli_fetch_array($result)) { print_r($row); } } if ($mysqli->errno) { printf("Could not show table: %s
", $mysqli->error); } $mysqli->close();

输出

得到的输出如下所示 −

Show table executed successfully.
Array
(
    [0] => articles
    [Tables_in_tutorials] => articles
)
Array
(
    [0] => courses
    [Tables_in_tutorials] => courses
)
Array
(
    [0] => customers
    [Tables_in_tutorials] => customers
)
Array
(
    [0] => customerss
    [Tables_in_tutorials] => customerss
)
Array
(
    [0] => demo_table
    [Tables_in_tutorials] => demo_table
)
Array
(
    [0] => employee
    [Tables_in_tutorials] => employee
)
Array
(
    [0] => films
    [Tables_in_tutorials] => films
)
Array
(
    [0] => films_watched
    [Tables_in_tutorials] => films_watched
)
Array
(
    [0] => myplayers
    [Tables_in_tutorials] => myplayers
)
Array
(
    [0] => new_tutorial_tbl
    [Tables_in_tutorials] => new_tutorial_tbl
)
Array
(
    [0] => orders
    [Tables_in_tutorials] => orders
)
Array
(
    [0] => persons
    [Tables_in_tutorials] => persons
)
Array
(
    [0] => products
    [Tables_in_tutorials] => products
)
Array
(
    [0] => sales
    [Tables_in_tutorials] => sales
)
Array
(
    [0] => students
    [Tables_in_tutorials] => students
)        
var mysql = require('mysql2');
var con = mysql.createConnection({
    host: "localhost",
    user: "root",
    password: "Nr5a0204@123"
});

  //连接到 MySQL
  con.connect(function (err) {
  if (err) throw err;
  console.log("Connected!");
  console.log("--------------------------");

  sql = "CREATE DATABASE TUTORIALS;"
  con.query(sql);

  sql = "USE TUTORIALS;"
  con.query(sql);

  sql = "CREATE TABLE CUSTOMERS (ID INT NOT NULL, NAME VARCHAR(20) NOT NULL);"
  con.query(sql);

  sql = "CREATE TABLE ORDERS (OID INT NOT NULL, CUSTOMER_ID INT);"
  con.query(sql);

  sql = "SHOW TABLES;"
  con.query(sql, function(err, result){
    if (err) throw err
    console.log(result);
  });
});               

输出

产生的输出如下所示 −

Connected!
--------------------------
[
  { Tables_in_tutorials: 'customers' },
  { Tables_in_tutorials: 'orders' }
]         
import java.sql.*;
public class JDBCconnection {
public static void main(String[] args){
    String url = "jdbc:mysql://localhost:3306/TUTORIALS";
    String username = "root";
    String password = "password";
    try{
        Class.forName("com.mysql.cj.jdbc.Driver");
        Connection connection = DriverManager.getConnection(url, username, password);
        Statement statement = connection.createStatement();
        System.out.println("Connected successfully...!");

        //显示表语句...!
        String sql = "SHOW TABLES FROM TUTORIALS";
        ResultSet resultSet = statement.executeQuery(sql);
        System.out.println("Tables in the current database: ");
        while(resultSet.next()) {
            System.out.print(resultSet.getString(1));
            System.out.println();
        }
        connection.close();
    }
    catch(Exception e){
        System.out.println(e);
    }
}
}                              

输出

得到的输出如下所示 −

Connected successfully...!
Tables in the current database: 
articles
blackpink
blog
courses
customer
customers
data   
import mysql.connector
#建立连接
connection = mysql.connector.connect(
    host='localhost',
    user='root',
    password='password',
    database='tut'
)
#创建游标对象 
cursorObj = connection.cursor()
cursorObj.execute("SHOW TABLES")
tables = cursorObj.fetchall()
print("Tables in the database are:")
for table in tables:
    print(table[0])
cursorObj.close()
connection.close()                                         

输出

以上代码的输出如下所示 −

Tables in the database are:
books
novel
novels
tutorials_tbl