DML , 데이터 조작어 ( Select , Insert , < Update, Delete > ) 본문
** update 명령어는 데이터를 수정할 수 있다
* update tablename
set column1 = value1, column2 = value2 , ...
where condition;
- where을 명시하지 않으면 모든 데이터가 변경된다
* 예시
* Delete from database
where condition;
'BF 2024 > SQL' 카테고리의 다른 글
비교연산자 comparison operators (0) | 2022.03.14 |
---|---|
Order by ( col asc | desc ) (0) | 2022.03.14 |
DML , 데이터 조작어 ( < Select > , Insert , Update, Delete ) (0) | 2022.03.14 |
DML , 데이터 조작어 ( Select < Insert > Update, Delete ) (0) | 2022.03.14 |
Table 변경& 삭제 ( Alter table table name rename new_table name) (0) | 2022.03.14 |
Comments