테이블유무 썸네일형 리스트형 [MS-SQL] 테이블 존재 유무 체크 ******** 1 if exists(select * from information_schema.tables where table_name='tblOllagaza') BEGIN DROP TABLE tblOllagaza select N'삭제' END ELSE BEGIN select N'없음' END ******** 2 select * From sysobjects where name='tblOllagaza' 데이터베이스에 테이블이 존재하는지 체크. 더보기 이전 1 다음