information_schema
目录视图的需求是什么,因为它们提供了与(sys.objects和sys.columns)相同的详细信息。
information_schema.tables----->retrives from sys.objects.
information_schema.column----->retrives from sys.columns.
答案 0 :(得分:4)
information_schema ...是ANSI兼容的视图,其他RDBMS系统也有这些视图,如MySQL,postgreSQL,SQLite。 sys.columns
仅存在于SQL Server
PostgreSQL:http://www.postgresql.org/docs/current/interactive/information-schema.html
MySQL:http://dev.mysql.com/doc/refman/5.7/en/information-schema.html
SQLite:http://www.sqlite.org/cvstrac/wiki?p=InformationSchema
另一方面,Oracle没有这些视图,但是他们自己的版本如ALL_TABLES
和ALL_TAB_COLUMNS