SQL은 데이터 관리를 위해 설계된 특수목적의 프로그램 언어이다.
SELECT "함수명" ("필드명") FROM "테이블명";
--Select all: SELECT * FROM customer;
/*Select all the columns of all the records in the customers table:*/ SELECT * FROM customer;