Computer >> 컴퓨터 >  >> 프로그램 작성 >> MySQL

MySQL DELETE 명령은 무엇에 사용됩니까?

<시간/>

MySQL DELETE 명령은 테이블에서 행을 삭제하는 데 사용됩니다. WHERE 절과 함께 사용됩니다.

구문

DELETE From Table_name WHERE Condition;

예시

아래 예에서는 id>=100인 테이블 'employee'에서 행을 삭제했습니다.

mysql> select * from employee;
+------+--------+
| Id   | name   |
+------+--------+
| 100  | Ram    |
| 200  | Gaurav |
| 300  | MOHAN  |
+------+--------+
3 rows in set (0.00 sec)

mysql> delete from employee where id >=100;
Query OK, 3 rows affected (0.06 sec)

mysql> select * from employee;
Empty set (0.00 sec)