Oracle Data Base (9) 썸네일형 리스트형 [SQL Plus] create, grant, insert, update, delete 구문 정리 [create 구문 + grant 권한 부여] 1. 계정 생성하기 형식) create user 생성할_계정명 identified by 암호명; SQL> create user test identified by t1234; -> 권한 필요 2. 로그인 상태에서 관리자/일반유저로 전환하기 형식) conn 접속할계정명/암호 grant connect,resource to test; 4. 테이블 생성하기 형식) create table 생성할_테이블명( 필드명1 자료형(데이터형식),필드명2 자료형(데이터형식) ); SQL> create table prtest(id number(2), name varchar2(10)); [insert 구문 - 데이터 추가] 형식) insert into 테이블명 values(값1, 값2.. 이전 1 2 다음