취미와 밥줄사이

[SQL] DELETE 문 본문

DB

[SQL] DELETE 문

취미와 밥줄사이 2021. 11. 1. 09:25

The SQL DELETE Statement


  • DELETE 문은 테이블에 존재하는 레코드를 삭제할 때 사용된다.
  • # DELETE Syntax
    DELETE FROM table_name WHERE condition;

REFERENCE


https://www.w3schools.com/sql/sql_delete.asp

 

SQL DELETE Statement

W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.

www.w3schools.com

 

'DB' 카테고리의 다른 글

[SQL] COUNT(), AVG(), and SUM() 함수  (0) 2021.11.01
[SQL] MIN() and MAX() 함수  (0) 2021.11.01
[SQL] UPDATE Statement  (0) 2021.11.01
[SQL] NULL Values  (0) 2021.11.01
[SQL] SQL이란  (0) 2021.10.29