判断表是否存在,存在则删除表

    技术2022-05-11  58

    if exists (select 1 from sysobjects where id = object_id('psintroduction') and type = 'U') drop table psintroduction go 要判断的表 psintroduction  

    最新回复(0)