Select TableName

  • Thread starter Thread starter Barry
  • Start date Start date
B

Barry

Hi

I want to populate a combobox with all table names in a MS Access database,
what will the sql string be?

TIA
Barry
 
Barry said:
Hi

I want to populate a combobox with all table names in a MS Access
database, what will the sql string be?

TIA
Barry

Here's a query that worked for me to return the tables I created in an
Access 2007 DB and exclude the system tables:

SELECT NAME
FROM MSysObjects
WHERE Type = 1 AND NAME NOT LIKE "MSys*";
 

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

Back
Top