0
可能重複:
can we list all tables in msaccess database using sql?
How to get table names from access?如何使用Ms Access中的SQL檢索數據庫中的所有表?
如何取回在微軟的Access使用SQL數據庫中所有表?
可能重複:
can we list all tables in msaccess database using sql?
How to get table names from access?如何使用Ms Access中的SQL檢索數據庫中的所有表?
如何取回在微軟的Access使用SQL數據庫中所有表?
SELECT name
from msysobjects
WHERE type=1 and flags=0
;
http://stackoverflow.com/questions/2076422/access-get-all-tables – 2011-04-01 05:07:16
http://stackoverflow.com/questions/201282/how-to-get-table-names-from-訪問 – 2011-04-01 05:07:40