SELECT * FROM table_A


SELECT * FROM table_B



두개의 select 문의 결과값을 합치고 싶을때


union 을 사용하면 된다.


SELECT * FROM table_A

UNION

SELECT * FROM table_B

+ Recent posts