IT/데이터베이스 / / 2015. 3. 26.

Oracle 요약 2

포스팅 목차

    ▒ 치환 변수
    단일 엠퍼센트 (&) : 유저에게 질의
    이중 앰퍼센트 (&&) : 한 번 질의 후 재사용

     

    select * from &table
    select &colums from employees
    select last_name from employees where last_name='&name'
    insert into employees values(&사원번호,'&이름','&성','&이메일'....)
    select employee_id, last_name,&&colum from employees order by &colum
    (앞에서 물어본 컬럼을 다시 물어보지 않고, 앞에서 받은 컬럼 그대로 적용)

     

    ▒ 제약 조건 - 데이터의 무결성을 만드는 조건 (Constraint)

    ① not null : data가 존재해야 하는 것
    ex) 이름, 아이디, 암호, 주민번호

     

    ② unique : 중복 허용 안함.
    alter table 테이블명 add constraint 제약조건이름 unique (컬럼)
    alter table departments add constraint dep_name unique (department_name);

     

    ③ primary key (주키) - 대상 : 컬럼 or 테이블
    1. table의 기준을 선정하는 조건
        (not null, unique 조건이 자동으로 들어감. 고유한 식별을 위해 지정.)
    2. 다른 table에서 Primary key를 참조하기 위해 (일관성을 위해), 다른 테이블에선 외래키(foreign key)를 만들어야 함.
        ※ 테이블에는 primary key를 한개만 허용! 

    alter table departments add constraint dept_id_pri primary key (department_id);
    alter table 테이블명 add constraint 이름 primary key(컬럼, 컬럼....) - 테이블 전체에 지정

    alter table departments drop primary key cascade; primary key의 제약 지우기
    alter table employees drop primary key cascade;

     

    ④ foreign key (외래키) : 데이터의 일관성을 맞추기 위해 주키를 참조.
    alter table employees add constraint emp_id_for foreign key (department_id) references departments(department_id);
    alter table 테이블명 add constraint 이름 foreign key(컬럼) references 참조할 테이블명(컬럼) 

     

    ⑤ check : data에 대한 특정 제약을 줄 경우.
    ex) salary > 0 이라고 제약을 주면 유저가 0보다 작은 값을 넣으면 에러값을 내줌.
          sex in(남,여) 라고 주면 둘중에 하나의 값을 넣어줌. 

          alter table 테이블명 add constraint 조건이름 check (salary>0)

     

    ※ 조건 생성 방법 
       1. 테이블 생성시 (Create table~)
       2. 기존 data가 있는 경우  (Alter table~)
          alter table 테이블 modify (컬럼 형식 not null)
          drop constraint 제약조건이름 
       제약 조건 해지 : alter table departments drop constraint sys_C005078;

     

    cf) 테이블 정보 보기
    desc 구조보기
    user_constraints 테이블 제약조건 확인(dictionary table-오라클이 만들어 주는 테이블)
    dba_cons_columns 세부적인 제약조건 확인
    dba_constraints (dba권한을 가진 유저만 사용가능)


    • 네이버 블로그 공유
    • 네이버 밴드 공유
    • 페이스북 공유
    • 카카오스토리 공유