Show List of Tables

  • Thread starter Gulf Coast Electric
  • Start date
G

Gulf Coast Electric

I need to use a form to show a drop down list of the tables in my database.
What is the syntax for the query Please.

Thanks,


Dave
 
A

Allen Browne

SELECT MSysObjects.Name FROM MSysObjects
WHERE Type = 1 AND Not (Name Like "MSys*" Or Name Like "~*")
ORDER BY MSysObjects.Name;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top