Alias란?
데이터 출력 시 컬럼명을 임시로 변경하여 출력할 때 쓰인다.
-- 올바른 문법
SELECT last_name AS special, commission_pct AS comm
FROM employees;
-- AS 생략 가능
SELECT last_name special, commission_pct comm
FROM employees;
-- 공백 또는 대소문자를 구분 또는 특수문자($, _)를 포함하고 싶을 때
SELECT last_name "Special", commission_pct "Kal SP", manager_id "$dollar_"
FROM employees;
'BackEnd > DataBase - Oracle' 카테고리의 다른 글
[Oracle] 중복을 제거해주는 DISTINCT 키워드 (0) | 2020.01.29 |
---|---|
[Oracle] 연결 연산자와 리터럴 문자 (0) | 2020.01.29 |
[Oracle] NULL 값 (0) | 2020.01.29 |
[Oracle] SELECT 구문을 사용한 데이터 검색 (0) | 2020.01.29 |
[Oracle] sql*plus 시작하기 (0) | 2020.01.29 |