일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 어노인팅
- 날솟샘
- 한동대학교
- 일반화학
- 묵상
- 글로벌리더십학부
- Database
- QT
- SQLD
- FE
- SQL
- 전산전자공학부
- csee
- 남재창교수님
- CHEMISTRY
- Software Engineering
- 날마다 솟는 샘물
- 프론트엔드
- CCM
- 데이터베이스
- 화학
- dbms
- 예배
- 웹개발
- 설교
- typeScript
- 찬양
- GLS
- 유태준교수님
- 혼자공부하는sql
- Today
- Total
목록2025/05/26 (2)
멈추지 않는 기록

Transactions 트랜잭션Concept and examples개념과 예시Levels of transactions트랜잭션의 수준 Transactions 트랜잭션1) A transaction 트랜잭션An indivisible “unit” of program execution that accesses and updates data items데이터 항목에 접근하고 업데이트하는 프로그램 실행의 불가분한 "단위"Indivisible: Either execute entirely or not at all불가분성: 전부 실행하거나 전혀 실행되지 않음A collection of operations that form a single logical unit of work하나의 논리적 작업 단위를 형성하는 연산들의 모음C..

[1] ViewsViewsIt is not always desirable for all users to see the entire logical model of data (모든 사용자가 데이터의 전체 논리 모델을 볼 수 있도록 하는 것이 항상 바람직한 것은 아니다)E.g., consider a user who needs to know an instructor name and department, but not the salary(예: 강사의 이름과 학과는 필요하지만 급여는 알 필요 없는 사용자)This user only needs to see the following relation (in SQL)(이 사용자는 다음과 같은 관계만 보면 된다) SELECT ID, name, dept_name FROM in..