can we list all tables in msaccess database using sql?

Posted by Thunder on Stack Overflow See other posts from Stack Overflow or by Thunder
Published on 2010-04-13T11:46:46Z Indexed on 2010/04/13 11:53 UTC
Read the original article Hit count: 674

Filed under:
|
|

Can we find all tables in the msaccess using sql .

as we do in sqlserver

select * from sys.tables  

in sqlite

SELECT * FROM sqlite_master where type='table' 

© Stack Overflow or respective owner

Related posts about msaccess

Related posts about database