【问题标题】:How do I retrieve all tables in a database using SQL in Ms Access? [duplicate]如何在 Ms Access 中使用 SQL 检索数据库中的所有表? [复制]
【发布时间】: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 检索数据库中的所有表?

【问题讨论】:

标签: sql ms-access


【解决方案1】:
SELECT name
from msysobjects
WHERE type=1 and flags=0
;

【讨论】:

    猜你喜欢
    • 2022-09-29
    • 2023-04-08
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2017-08-17
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多