【发布时间】:2011-07-27 10:20:52
【问题描述】:
可能的重复:
can we list all tables in msaccess database using sql?
How to get table names from access?
如何在 Ms Access 中使用 SQL 检索数据库中的所有表?
【问题讨论】:
可能的重复:
can we list all tables in msaccess database using sql?
How to get table names from access?
如何在 Ms Access 中使用 SQL 检索数据库中的所有表?
【问题讨论】:
SELECT name
from msysobjects
WHERE type=1 and flags=0
;
【讨论】: