SQL 초보 탈출
SELECT CONCAT("SRT1", "STR2",...);
SELECT column as alias FROM tablename
SELECT * FROM tablename as alias
SELECT DISTINCT column1, column2, ... FROM tablename;
SELECT column1, column2 FROM tablename WHERE condition LIMIT number;