02_Database

07_데이터 삭제(DELETE)

chuuvelop 2025. 1. 29. 00:27
728x90
01. 데이터 삭제(DELETE)

 

DELETE문의 기본 문법

delete from 테이블이름 where 조건;

 

 

city_popul 테이블에서 'New'로 시작하는 도시를 삭제하고 싶다면

select * from city_popul where city_name like 'New%';

delete from city_popul where city_name like 'New%';

 

728x90