随笔分类 - Sql Server
摘要:/*==============================================================*//* 在表sysobjects中查找有没有“newsContent”的记录,有就将数据库中的表删除/*==============================================================*/if exists (select 1 from sysobjects where id = object_id('newsContent') and type = 'U') drop table news
阅读全文