0

Possible Duplicates:
can we list all tables in msaccess database using sql?
How to get table names from access?

How do I retrieve all tables in a database using SQL in Ms Access?

Community
  • 1
  • 1
Manish Basdeo
  • 5,957
  • 21
  • 67
  • 100

1 Answers1

2
SELECT name
from msysobjects
WHERE type=1 and flags=0
;
RichardTheKiwi
  • 102,799
  • 24
  • 193
  • 261