<Oracle>


Record : 행


Primary Key  :  레코드 식별값 - 레코드에 접속하기 위해서


Index : Primary Key는 생성시 기본적으로 생김



create tabel 테이블명 ( )


insert into 테이블명 value ('칼럼1값','칼럼2값',....)


select [칼럼명1],[칼럼명2] from 테이블명 where 조건1 and 조건2


update 테이블명 set NAME="최범균" where 조건


delete from 테이블명 where 조건


+ Recent posts