sql快速刪除所用表,視圖,存儲過程

刪除用戶表 一、 select 'DROP TABLE '+name from sysobjects where type = 'U' 刪除視圖 二、 select 'DROP VIEW '+name from sysobjects where type = 'V' 刪除存儲過程 三、 select 'DROP PROC '+name from sysobjects where type = 'P
相關文章
相關標籤/搜索