利用SQL语句查询一个数据库中的所有表

SQL  :  select * from information_schema.tables 

ORACLE: select table_name from user_tables 

ACCESS: select    name    from    MSysObjects    where    type=1    and    flags=0

原文地址:https://www.cnblogs.com/accumulater/p/6088420.html