여러 문자열을 하나로 합치거나 연결함
select concat('str1','str2',....)
컬럼 이나 테이블 이름에 별칭 생성
select col as alias
from table_name;
검색한 결과의 중복 제거
select distinct col1,col2,...
from table_name;
검색 결과를 정렬된 순으로 주어진 숫자만큼 조회
select col1, col2,..
from table_name
where condtion (필수요소x)
limit number;