查询 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有什么数据库、所有的数据库软件等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)