1、列出數據庫sql
1.列出全部庫數據庫
use master; go select name,dbid from master.dbo.sysdatabases
2.只列出用戶庫ide
use master; go select name,dbid from master.dbo.sysdatabases where dbid>4;
2、列出庫中的表spa
1.只列出庫中的系統表;orm
use DB_NAME; go select name,xtype from sysobjects where xtype = 's'
2.只列出庫中的用戶數據表;it
use DB_NAME; go select name,xtype from sysobjects where xtype = 'u'
附註: DB_NAME是指用戶數據庫的名字;ast