오블완2 [데이터베이스설계] 1-2 DDL, DML DDL Data Definition Language 데이터 정의 언어Data Definition Language (DDL) 데이터베이스 스키마를 정의하기 위한 지정된 표기법. 데이터베이스 스키마를 기술 create table instructor( ID char(5), name varchar(20), salary numeric(8,2) ) //이런거 DDL compiler는 data dictionary에 저장된 테이블 템플릿 세트를 생성함Data dictionary는 metadata를 포함함 (i.e. data about data)- Database schema- Integrity constraints (무결성 제약 조건) /.. 2024. 11. 8. [데이터베이스설계] 1-1 기초 A collection of tools for describing- Data //학생, 과목- Data relationships //학생이 과목을 수강- Data semantics (의미)- Data constraints (제약사항) //학번은 고유식별자… 같으면 안 된다는 제약이 존재 //무결성 제약 integrity constraint = 데이터베이스의 정확성과 일관성을 보장하기 위해 설정되는 조건DB의 데이터는 실세계를 정확히 반영한 것이어야 함정확하지 않으면 결함이 있는 것. //ex. 학번은 겹치지 않는다 Relational Model = 관계 (데이터) 모델. 이거 쓰면 DB = RDBEn.. 2024. 11. 7. 이전 1 다음