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
  • 6,139
  • 22
  • 68
  • 102

1 Answers1

2
SELECT name
from msysobjects
WHERE type=1 and flags=0
;
RichardTheKiwi
  • 105,798
  • 26
  • 196
  • 262