일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ISA
- register renaming
- Cache
- cache coherence
- branch prediction
- sql
- pipline hazards
- speculative execution
- mesi
- directory based coherence protocol
- 관계형 모델
- dynamic scheduling
- pipelined
- nonblocking cache
- relational model
- atomic exchange
- sequential consistency
- Subquery
- transactional memory
- moesi
- store conditional
- cache coherence miss
- pipelined cache
- multibanekd cache
- structural hazard
- cache optimization
- theta join
- load linked
- way prediction
- dependence
- Today
- Total
목록relational model (2)
공대생의 공부흔적
참고: Database Systems: The Complete Book (2nd edition) 이번 글에서는 관계형 모델(Relational Model)을 SQL로 구현하는 방법에 대해 알아볼 것이다. 먼저 관계형 모델의 attribute에 사용 가능한 데이터 타입을 알아본 후, 표 생성/삭제/수정, primary/foreign 키 선언, 인덱스 선언, tuple 연산과 관련된 SQL 코드를 간단히 살펴볼 것이다. 관계형 모델에 대한 설명은 다음 글을 참고하면 된다. 2024.03.07 - [Database & Big Data] - [DB#2] 관계형 모델(Relational Model) SQL? SQL이란 Structured Query Language의 약자로, 관계형 데이터베이스를 표현하고 관리하기..
참고: Database Systems: The Complete Book (2nd edition) 이번 글에서는 지난 글에서 살펴본 데이터 모델 중 관계형 모델에 대해 알아볼 것이다. 2024.03.07 - [Database & Big Data] - [DB#1] 데이터 모델 (Data Model)Basics/용어 정리Relation: 데이터를 포함하는 이차원 표Schema: relation 이름과 attribute의 집합 e.g. Movies(title, year, length, genre)Database schema: 데이터베이스의 relation을 위한 schema의 집합Tuple: 각 attribute별로 원소 하나씩을 포함하고 있다. e.g. (Star Wars, 1977, 124, sciFi)In..