怎样获取mysql数据库里所有表的名字
答案:2 悬赏:30 手机版
解决时间 2021-02-09 14:04
- 提问者网友:我的未来我做主
- 2021-02-08 17:09
怎样获取mysql数据库里所有表的名字
最佳答案
- 五星知识达人网友:洒脱疯子
- 2021-02-08 18:46
用sql获取数据库中所有的表名的方法:
1、oracle下:select table_name from all_tables;
2、MySQL下:select table_name from information_schema.tables where table_schema='csdb' and table_type='base table';
3、sql server下:select name from sys.tables go
1、oracle下:select table_name from all_tables;
2、MySQL下:select table_name from information_schema.tables where table_schema='csdb' and table_type='base table';
3、sql server下:select name from sys.tables go
全部回答
- 1楼网友:一秋
- 2021-02-08 19:12
可以通过查询系统表来获取。
1、打开navicat for mysql,登录到指定数据库下。
2、新建查询。
3、输入以下语句:
1
select column_name from information_schema.columns where table_name='表名'
结果:
其中id和name就是test表的字段名字。
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯