SQL 기본 | SQL | Comments : 주석
주석(comment)은 로직에 대한 설명이나 코드를 비활성화 할 때 사용한다. 주석은 코드에 영향을 미치지 않는다. SQL에서 사용할 수 있는 주석문은 2가지 종류가 있다.
단일 라인 주석 (Single-line comment)
한줄 라인 주석은 ‘–’ 를 사용한다.
--Select all:
SELECT * FROM customer;
블록 주석 (Multi-line Comment)
/* 에서 */까지의 모든 내용이 주석 처리 된다.
/*Select all the columns
of all the records
in the customers table:*/
SELECT * FROM customer;
최종 수정 : 2021-08-27