色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

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

錢浩然2年前108瀏覽0評論
如何從一個SQL語句中提取出所有的表名?

用SQL獲取數(shù)據(jù)庫中所有的表名的方法:

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