Versions available for this page: CUBRID 8.2.1 | CUBRID 8.3.0 | CUBRID 8.3.1 | CUBRID 8.4.0 | CUBRID 8.4.1 | CUBRID 8.4.3 | CUBRID 9.0.0 |
DELETE 구문을 사용하면 테이블 내에 불필요한 데이터를 삭제할 수 있다.
DELETE
FROM table _spec [ correlation ]
[ WHERE_search_condition ] [ ; ]
correlation :
[ AS ] identifier [ {, identifier }_ ]
table_spec :
single_table_spec
( single_table_spec [ {, single_table_spec }_ ] )
single_table_spec :
[ ONLY ] table_name
| ALL table_name [ EXCEPTtable_name ]
DELETE FROM stadium;
DELETE FROM olympic WHERE host_year = 1980;