SQL Server 查询语句

查看 SQL Server 中全部数据库的信息 select * from sysdatabases 查看当前使用的数据库中全部表信息 use Northwind select * from sysobjects where type='U' select * from sysobjects where type not in('U','S','SQ','IT','D') --当前使用的数据库中
相关文章
相关标签/搜索