일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- transactional memory
- register renaming
- cache coherence
- dynamic scheduling
- load linked
- nonblocking cache
- multibanekd cache
- ISA
- atomic exchange
- pipelined
- sql
- moesi
- relational model
- Cache
- branch prediction
- theta join
- pipline hazards
- sequential consistency
- Subquery
- speculative execution
- dependence
- way prediction
- directory based coherence protocol
- 관계형 모델
- pipelined cache
- structural hazard
- cache optimization
- cache coherence miss
- mesi
- store conditional
- Today
- Total
목록Subquery (2)
공대생의 공부흔적
참고: Database Systems: The Complete Book (2nd edition) - 6.3 Subqueries 이번 글에서는 서브쿼리 중 SQL의 join에 대해 알아볼 것이다. 두 개의 relation은 product, theta join, natural join, outerjoin으로 join될 수 있다. 예시를 바탕으로 하나씩 알아보자. Movies(title, year, length) StarsIn(movieTitle, movieYear, starName) Movies title year length StarsIn movieTitle movieYear starName t1 y1 l1 t1 y1 s1 t1 y2 l2 t2 y2 s2 Cross Join (product) 가장 간단한 ..
참고: Database Systems: The Complete Book (2nd edition) - 6.3 Subqueries 이번 글에서는 쿼리 안의 쿼리인 서브쿼리에 대해 알아볼 것이다. 하나의 서브쿼리는 또 서브쿼리를 가질 수 있고, 계속해서 여러 개의 서브쿼리를 가질 수 있다. 앞선 글에서 살펴보았던 집합 연산이 서브쿼리의 사용 예시이다. 아래 표현에서 (SELECT A FROM R)과 (SELECT A FROM S)가 각각 서브쿼리이다. (SELECT A FROM R) UNION (SELECT A FROM S); 서브쿼리의 특징은 다음과 같다. 서브쿼리는 하나의 단일 상수를 리턴할 수 있고, 이 상수는 WHERE 구문 안에서 다른 값과 비교될 수 있다. 서브쿼리는 WHERE 구문에서 사용될 수 ..