일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 소개딩
- webhacking 처음
- 인턴 후기
- reversing.kr
- riceteacatpanda
- Layered Architecture
- PyAmdecoder
- react
- ㅁㅇㅂ??ㅇㅈㄷ ㅎㅇㅌ...
- Database
- 네이버 인턴
- 메모리 포랜식
- 정보보호병 후기
- 인턴 지원
- jsp
- 3단계 지역 DB
- 방명록 만들기
- 행정지역 DB
- 동읍면 DB
- mysql
- SessionAttribute
- Forensic 절차
- restapi
- Django
- DBMS
- spring
- frontend
- 소프트웨어 개발보안 경진대회
- EER
- JSTL
- Today
- Total
목록Database (4)
웹찢남

Basic SQL Table,row and column = Relation,tuple and attribute SQL Schema identified by a schema name 각각의 element의 authorization id 와 descriptor을 포함함 → Create Schema State Catalog SQL 환경의 schema들의 집합 INFORMATION_SCHEMA를 항상 포함함 위의 INFOR~는 모든 schema의 정보를 가지고 있음 create table command in SQL specifying a new relation(table) provide name nof table specify attributes,types, initial constraints CREATE TA..

EER(Extended Entity Relationship Model) Objective programming Subclass, set-subset relationship Specialization/Generalization Hierarchies Notation to display them in EER diagrams Subclasses and Superclasses entity type은 추가적인 subgroup을 갖고 있음 Employee 같은 경우 비서, 엔지니어 등 직업으로 나뉠 수 있음 EER diagram은 ER diagram을 subset으로 나눈 것임 Superclass는 위의 표에서 Employee고 비서,엔지니어는 subclass임 subclass의 멤버면 Suerclass임, 부분집합..

ER/UML database design ER(Entity Relationship) Diagrams UML(unified Modeling Language) Class Diagrams ER Model GOAL: specification of database schema ER모델을 써서 본질적인 요소를 그림으로 보여주고 그들의 연관 관계를 보여줄 수 있다. Entity(table)와 그 관계로 ER-MODEL이 이루어짐 Entities and attributes Entity는 ER model의 basic concept다. (Table) Entity는 mini-world 내의 things 나 objects 같은 걸 의미 ex) Employee attributes는 entity를 설명하기 위해 사용 (Colum..

Table set of rows Each row - a different entity Each column - a particular fact about each entity Relation - relation name(table),attributes,Tuples(row) Structured Query Language (SQL) Language for manipulating tables Declarative - Statement specifies what needs to be obtained, not how it is to be achieved Key of Relation: row 마다 유니크한 정보가 있는데 key라고 한다. Formal Definitions - Schema Schema of a Rel..