: 어떤 문자열을 하나로 합치거나 연결
select concat('string1', 'string2', ..);
ex) select concat('concat', ' ', 'test');
ex) select concat ('이름: ', name) from celeb;
: 칼럼이나 테이블 이름에 별칭 생성
*as는 생략도 가능
select column1, column2, ...
from table_name as table_alias;
select column as column_alias from table_name;
ex) snl_show에 출연한 celeb을 기준으로 두 테이블을 조인하여 다음과 같이 각 데이터의 별칭을 사용하여 검색
select concat(s.season, '-', s.episode, '(', s.broadcast_date, ')') as '방송정보',
concat(c.name, '(', c.job_title, ')') as '출연자정보'
from celeb as c, snl_show as s
where c.name = s.host;
: 검색한 결과의 중복 제거
select distinct column1, column2, ...
from table_name;
: 검색결과를 정렬된 순으로 주어진 숫자만큼 조회
select column1, column2, ...
from table_name
where condition
limit number;
ex) celeb 테이블에서 나이가 가장 적은 연예인 4명을 검색
select * from celeb order by age limit 4;