GSI

--============================================================--
-- DELETE
--============================================================--
-- 행 단위 삭제
USE tempDB
DELETE testTbl3 WHERE Fname='Kim'

-- 테이블을 남겨 놓고 모든 내용을 삭제할때
DELETE FROM bigTbl1
TRUNCATE TABLE bitTbl3

-- 테이블을 그대로 삭제할때
DROP table bitTbl2

Posted by gsi
: