MS ACCESS Query

A

Amjad

when i execute below query i get list of tables in ms access, like in SQL
Server i can run view to show column information associated with eash table.
how i can see in query each table names and also its column information like
each column anme datatypes etc. thanks

SELECT MSysObjects.Name, MSysObjects.Type, MSysObjects.LvProp,
MSysObjects.Owner, MSysObjects.ParentId, MSysObjects.Flags, *
FROM MSysObjects
WHERE (((MSysObjects.Type)=1) AND ((MSysObjects.Flags)=0));
 

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