怎么获得mysql数据库中某个表的名称

怎么获得mysql数据库中某个表的名称,第1张

方法如下,以oracle为例:

select * from all_tables WHERE owner='SCOTT' 或者

SELECT * FROM DBA_TABLES WHERE OWNER='SCOTT'

数据字典视图

表和列

DBA_TABLES、ALL_TABLES和USER_TABLES显示了有关数据库表的一般信息

DBA_TAB_COLUMNS、ALL_TAB_COLUMNS和USER_TAB_COLUMNS显示了每个数据库表的列的信息。

注意:DBA_OBJECTS、ALL_OBJECTS和USER_OBJECTS显示了模式对象的信息,包括表。

SELECT

  table_name   AS  `表名`,

  table_type   AS  `类型`,

  engine       AS  `引擎`,

  VERSION AS `版本`,

  TABLE_COLLATION AS `字符集`

FROM

  information_schema.tables

WHERE

  table_schema = 'test'

ORDER BY

  table_name DESC

+------------------+------------+--------+------+-------------------+

| 表名             | 类型       | 引擎   | 版本 | 字符集            |

+------------------+------------+--------+------+-------------------+

| test_sub_student | BASE TABLE | InnoDB |   10 | latin1_swedish_ci |

| test_sub2        | BASE TABLE | InnoDB |   10 | latin1_swedish_ci |

| test_sub         | BASE TABLE | InnoDB |   10 | latin1_swedish_ci |

| test_rollup_1    | BASE TABLE | InnoDB |   10 | latin1_swedish_ci |

| test_main_class  | BASE TABLE | InnoDB |   10 | latin1_swedish_ci |

| test_main2       | BASE TABLE | InnoDB |   10 | latin1_swedish_ci |

| test_main        | BASE TABLE | InnoDB |   10 | latin1_swedish_ci |

| testuser         | BASE TABLE | InnoDB |   10 | latin1_swedish_ci |

| td_testsalary    | BASE TABLE | InnoDB |   10 | latin1_swedish_ci |

| sale_report      | BASE TABLE | InnoDB |   10 | latin1_swedish_ci |

| log_table        | BASE TABLE | InnoDB |   10 | latin1_swedish_ci |

+------------------+------------+--------+------+-------------------+

11 rows in set (0.00 sec)

用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


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

原文地址: http://outofmemory.cn/zaji/8454856.html

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

发表评论

登录后才能评论

评论列表(0条)

保存