250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- __len__
- JS
- glob
- inplace()
- shutil
- zipfile
- __sub__
- __annotations__
- MySqlDB
- fileinput
- mro()
- randrange()
- Database
- discard()
- 오버라이딩
- choice()
- node.js
- HTML
- locals()
- fnmatch
- MySQL
- CSS
- 파이썬
- View
- shuffle()
- items()
- __getitem__
- remove()
- count()
- decode()
Archives
- Today
- Total
목록Union (1)
흰둥이는 코드를 짤 때 짖어 (왈!왈!왈!왈!왈!왈!왈!왈!왈!왈!왈!)

product, product_new 테이블 select * from product; select * from product_new; 유니온(union) 합집합을 나타내는 연산자로, 중복된 값을 제거함 서로 같은 종류의 테이블(컬럼이 같아야 함)에서만 적용이 가능 # select 컬럼명1, 컬럼명2.. 테이블1 union select 컬럼명1, 컬럼명2.. from 테이블2 select code, name, price from product union select code, name, price from product_new; 중복이 되는 100001번 하나가 제외되어 출력된다. select code, name, price, regdate from product union select code, name..
MySQL
2023. 3. 20. 16:52