본문 바로가기

DML , 데이터 조작어 ( Select , Insert , < Update, Delete > ) 본문

BF 2024/SQL

DML , 데이터 조작어 ( Select , Insert , < Update, Delete > )

jaegomhoji 2022. 3. 14. 21:39

** update 명령어는 데이터를 수정할 수 있다

 

* update tablename

   set column1 = value1, column2 = value2 , ... 

   where condition; 

 

- where을 명시하지 않으면 모든 데이터가 변경된다 

* 예시

 

* Delete from database

  where condition;

Comments