table A = "1,2,3";
table B = "3,4,5";

(select * from A) union
(select * from B)
-> 1,2,3,4,5
중복되는 내용은 제외

(select * from A) union all
(select * from B)
-> 1,2,3,3,4,5
중복되는 내용도 포함

query는 ( ) 사이에 넣어야 하며 order by는 ) 닫고 써야한다
(select * from A) union all
(select * from B) order by no desc

'database, query' 카테고리의 다른 글

페이징시 유효한 FOUND_ROWS();  (0) 2014.10.09
mysql table / column(type) 변경  (0) 2014.10.08
mysqldump(백업)  (0) 2014.10.08
테이블 구조 복사 및 내용 복사  (0) 2014.10.06
테이블 컬럼 추가, 변경, 삭제  (0) 2014.09.27
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,