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
- __sub__
- zipfile
- glob
- locals()
- node.js
- remove()
- choice()
- decode()
- 파이썬
- JS
- discard()
- Database
- items()
- 오버라이딩
- mro()
- fileinput
- shutil
- fnmatch
- inplace()
- count()
- __getitem__
- __len__
- MySQL
- View
- randrange()
- shuffle()
- __annotations__
- HTML
- CSS
- MySqlDB
Archives
- Today
- Total
목록SUB Query (1)
흰둥이는 코드를 짤 때 짖어 (왈!왈!왈!왈!왈!왈!왈!왈!왈!왈!왈!)

서브쿼리(Sub Query) 다른 쿼리 내부에 포함되어 있는 select 문을 의미 서브쿼리를 포함하고 있는 쿼리를 외부쿼리라고 부르고, 서브쿼리는 내부쿼리라고도 부름 서브쿼리는 괄호()로 감싸져서 표현 서브쿼리는 메인쿼리 컬럼 사용이 가능하며, 메인쿼리는 서브쿼리 컬럼을 사용하지 못함 select, where, from, having 절 등에서 사용할 수 있음 product 테이블 select * from product; where 절 # 100001의 가격보다 크거나 같은 price를 가지고 있는 상품의 모든 정보 select * from product where price >= (select price from product where code='100001'); select 절 # 코드, 이름, ..
MySQL
2023. 3. 20. 17:10