JSP/기본(Oracle)
데이터베이스 프로그래밍 기초 DB 연동
Bohemian life
2012. 6. 20. 17:13
<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 조건