如何查询数据库中所有表名

如何查询数据库中所有表名,第1张

查询 MySql 数据库所有表名:

select table_name from information_schematables where table_schema='当前数据库名' and table_type='base table';

查询 MySql 指定数据库中指定表的所有字段名:

select column_name from information_schemacolumns where table_schema='当前数据库名' and table_name='指定的表名';

扩展资料

查询所有数据库

show databases;

查询指定数据库中所有表名

select table_name from information_schematables where table_schema='database_name' and table_type='base table';

查询指定表中的所有字段名

查询指定表中的所有字段名和字段类型

select column_name,data_type from information_schemacolumns where table_schema='database_name' and table_name='table_name';

1、同时按下键盘上的win+r按键,调出运行框,并在d出的运行框中输入cmd后按下回车按键。

2、在d出的页面中输入mysql -u root -p命令,并点击键盘上的回车按键。

3、在d出的页面中输入需要查询的账号的密码并按下键盘上的回车按键。

4、这样就可以查看到所有的数据库。

MS-SQL Server

PowerBuilder

IBM DB2

Oracle

VFP

Access

Sybase

SQL Anywhere Studio

Informix

InterBase

MySQL/Postgresql

其他数据库

以上就是关于如何查询数据库中所有表名全部的内容,包括:如何查询数据库中所有表名、如何查看mysql有什么数据库、所有的数据库软件等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/10196358.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-06
下一篇 2023-05-06

发表评论

登录后才能评论

评论列表(0条)

保存