您的位置:首页 > 数据库 > Oracle

mssql,mysql,oracle中查询数据库表的比较

2013-12-14 10:39 309 查看
mysql:
select * from information_schema.tables where table_type='BASE TABLE'





mssql(sqlserver):
select * from ReportServer.information_schema.tables (where table_type='BASE TABLE')





select * from sysobjects where xtype='u'





oracle:
select * from user_tables;



内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息