如何获取SQL语句中的表名称,包括较复杂的SQL语句
答案:1 悬赏:0 手机版
解决时间 2021-02-23 07:08
- 提问者网友:雪舞兮
- 2021-02-22 19:32
如何获取SQL语句中的表名称,包括较复杂的SQL语句
最佳答案
- 五星知识达人网友:青尢
- 2021-02-22 21:05
如何获取SQL语句中的表名称,包括较复杂的SQL语句
用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
用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
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯