- MySQL 基础
- MySQL - 首页
- MySQL - 简介
- MySQL - 特性
- MySQL - 版本
- MySQL - 变量
- MySQL - 安装
- MySQL - 管理
- MySQL - PHP 语法
- MySQL - Node.js 语法
- MySQL - Java 语法
- MySQL - Python 语法
- MySQL - 连接
- MySQL - Workbench
- MySQL 数据库
- MySQL - 创建数据库
- MySQL - 删除数据库
- MySQL - 选择数据库
- MySQL - 显示数据库
- MySQL - 复制数据库
- MySQL - 数据库导出
- MySQL - 数据库导入
- MySQL - 数据库信息
- MySQL 用户
- MySQL - 创建用户
- MySQL - 删除用户
- MySQL - 显示用户
- MySQL - 修改密码
- MySQL - 授予权限
- MySQL - 显示权限
- MySQL - 收回权限
- MySQL - 锁定用户帐户
- MySQL - 解锁用户帐户
- MySQL 表
- MySQL - 创建表
- MySQL - 显示表
- MySQL - 修改表
- MySQL - 重命名表
- MySQL - 克隆表
- MySQL - 清空表
- MySQL - 临时表
- MySQL - 修复表
- MySQL - 描述表
- MySQL - 添加/删除列
- MySQL - 显示列
- MySQL - 重命名列
- MySQL - 表锁
- MySQL - 删除表
- MySQL - 派生表
- MySQL 查询
- MySQL - 查询
- MySQL - 约束
- MySQL - INSERT 查询
- MySQL - SELECT 查询
- MySQL - UPDATE 查询
- MySQL - DELETE 查询
- MySQL - REPLACE 查询
- MySQL - INSERT IGNORE
- MySQL - INSERT ON DUPLICATE KEY UPDATE
- MySQL - INSERT INTO SELECT
- MySQL 运算符和子句
- MySQL - WHERE 子句
- MySQL - LIMIT 子句
- MySQL - DISTINCT 子句
- MySQL - ORDER BY 子句
- MySQL - GROUP BY 子句
- MySQL - HAVING 子句
- MySQL - AND 运算符
- MySQL - OR 运算符
- MySQL - LIKE 运算符
- MySQL - IN 运算符
- MySQL - ANY 运算符
- MySQL - EXISTS 运算符
- MySQL - NOT 运算符
- MySQL - 不等于运算符
- MySQL - IS NULL 运算符
- MySQL - IS NOT NULL 运算符
- MySQL - BETWEEN 运算符
- MySQL - UNION 运算符
- MySQL - UNION vs UNION ALL
- MySQL - MINUS 运算符
- MySQL - INTERSECT 运算符
- MySQL - INTERVAL 运算符
- MySQL 连接
- MySQL - 使用连接
- MySQL - INNER JOIN
- MySQL - LEFT JOIN
- MySQL - RIGHT JOIN
- MySQL - CROSS JOIN
- MySQL - FULL JOIN
- MySQL - 自连接
- MySQL - DELETE JOIN
- MySQL - UPDATE JOIN
- MySQL - UNION vs JOIN
- MySQL 触发器
- MySQL - 触发器
- MySQL - 创建触发器
- MySQL - 显示触发器
- MySQL - 删除触发器
- MySQL - BEFORE INSERT 触发器
- MySQL - AFTER INSERT 触发器
- MySQL - BEFORE UPDATE 触发器
- MySQL - AFTER UPDATE 触发器
- MySQL - BEFORE DELETE 触发器
- MySQL - AFTER DELETE 触发器
- MySQL 数据类型
- MySQL - 数据类型
- MySQL - VARCHAR
- MySQL - BOOLEAN
- MySQL - ENUM
- MySQL - DECIMAL
- MySQL - INT
- MySQL - FLOAT
- MySQL - BIT
- MySQL - TINYINT
- MySQL - BLOB
- MySQL - SET
- MySQL 正则表达式
- MySQL - 正则表达式
- MySQL - RLIKE 运算符
- MySQL - NOT LIKE 运算符
- MySQL - NOT REGEXP 运算符
- MySQL - regexp_instr() 函数
- MySQL - regexp_like() 函数
- MySQL - regexp_replace() 函数
- MySQL - regexp_substr() 函数
- MySQL 函数和运算符
- MySQL - 日期和时间函数
- MySQL - 算术运算符
- MySQL - 数值函数
- MySQL - 字符串函数
- MySQL - 聚合函数
- MySQL 其他概念
- MySQL - NULL 值
- MySQL - 事务
- MySQL - 使用序列
- MySQL - 处理重复项
- MySQL - SQL 注入
- MySQL - 子查询
- MySQL - 注释
- MySQL - CHECK 约束
- MySQL - 存储引擎
- MySQL - 将表导出到 CSV 文件
- MySQL - 将 CSV 文件导入数据库
- MySQL - UUID
- MySQL - 通用表表达式
- MySQL - ON DELETE CASCADE
- MySQL - Upsert
- MySQL - 水平分区
- MySQL - 垂直分区
- MySQL - 游标
- MySQL - 存储函数
- MySQL - SIGNAL
- MySQL - RESIGNAL
- MySQL - 字符集
- MySQL - 排序规则
- MySQL - 通配符
- MySQL - 别名
- MySQL - ROLLUP
- MySQL - 今日日期
- MySQL - 字面量
- MySQL - 存储过程
- MySQL - EXPLAIN
- MySQL - JSON
- MySQL - 标准差
- MySQL - 查找重复记录
- MySQL - 删除重复记录
- MySQL - 选择随机记录
- MySQL - SHOW PROCESSLIST
- MySQL - 更改列类型
- MySQL - 重置自动递增
- MySQL - COALESCE() 函数
- MySQL 有用资源
- MySQL - 有用函数
- MySQL - 语句参考
- MySQL - 快速指南
- MySQL - 有用资源
- MySQL - 讨论
MySQL − 显示表
MySQL SHOW TABLES 语句
在 MySQL 中,我们使用SHOW TABLES命令来检索特定数据库中存在的表的名称。此命令在各种情况下都非常有用,例如:
当我们想要查看数据库中存在的表名以验证特定表是否存在时。
当我们想要显示数据库中每个表的附加信息时,我们使用带有 MySQL FULL 修饰符的 SHOW TABLES 命令。
此外,我们可以使用带有通配符的 SHOW TABLES 命令来过滤并仅显示与特定模式匹配的表。
语法
以下是 MySQL SHOW TABLES 命令的语法:
SHOW TABLES;
在继续示例之前,假设以下表存在于两个数据库testdb1和testdb2中:
数据库 | 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或 INFORMATION_SCHEMA 表的SYSTEM VIEW。
示例
在下面的查询中,我们使用 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 运算符。这些通配符将过滤并仅显示与特定模式匹配的表。
示例
在下面的查询中,我们使用带有 SHOW TABLES 命令的 LIKE 运算符来选择 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 程序显示 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);
要通过Java程序显示MySQL数据库中的表列表,我们需要使用MySQL Connector/Python 的execute()函数执行SHOW TABLES语句,如下所示:
show_table_query = "SHOW TABLES FROM DATABASE" cursorObj.execute(show_table_query);
示例
程序如下:
$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" }); //Connecting to 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://127.0.0.1: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...!"); //show table statement...! 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 #establishing the connection connection = mysql.connector.connect( host='localhost', user='root', password='password', database='tut' ) #Creating a cursor object 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