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

sqlserver怎樣用SQL語句查詢一個(gè)數(shù)據(jù)庫中的所有表

林子帆2年前102瀏覽0評(píng)論

sqlserver怎樣用SQL語句查詢一個(gè)數(shù)據(jù)庫中的所有表?

用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