table does not exist
IT/db 2009. 7. 1. 14:25mysql
drop table if exists [테이블명]
sybase
IF EXISTS (select * from dbo.sysobjects where id = object_id(N'[테이블명]) and type = 'U')
BEGIN
drop table [테이블명]
END
BEGIN
drop table [테이블명]
END
'IT > db' 카테고리의 다른 글
sybase NULL 취급 결함 (0) | 2011.09.29 |
---|---|
Aqua Data Studio 4.7.2 재설치 후 연결정보 살리기 (0) | 2011.07.12 |
DB 서버 function ISNULL (0) | 2011.02.10 |
기본용어 디비 CURD (0) | 2009.10.26 |
Derby 사용하기 (0) | 2009.08.14 |