欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

如何從一個SQL語句中提取出所有的表名

錢浩然2年前109瀏覽0評論
如何從一個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