목록10g (3)
Gentle Breeze
- SELECT 文 : 조회 - 6개의 절로 구성 * 필수절 SELECT 조회하는 칼럼, 표현식, 함수 FROM 테이블 * 생략 가능절 WHERE row 에 제한을 주는 조건 GROUP BY grouping 기준 HAVING grouping 결과에 제한을 주는 조건 ORDER BY 정렬 기준 - alias 사용 時 " " 를 사용하는 경우 ① 대소문자 구분 ② 공백 등의 특수문자 포함 ($, # ...) ③ ORACLE 예약어의 사용 - 기본 SELECT 문 * || (병합 연산자 vs concat() ) : column 데이터를 붙여 찍음 * dual 테이블 : Dummy 테이블 → 결과를 한 줄로 볼 때 column : Dummy / row : x eg) ① DESC DUAL ② SELECT * FR..
conn system/manager; create user scott identified by tiger default tablespace users temporary tablespace temp; grant connect, resource to scott; grant create view to scott; conn scott/tiger; ALTER SESSION SET NLS_LANGUAGE=American; SET TERMOUT ON PROMPT Building demonstration tables. Please wait. SET TERMOUT OFF DROP TABLE EMP; DROP TABLE DEPT; DROP TABLE BONUS; DROP TABLE SALGRADE; DROP TABLE D..
=== Oracle 사용자 생성 ==== create user ID identified by PWD default tablespace users temporary tablespace temp; === 비번 변경=== alter user ID identified by PWD; ===권한 부여=== grant connect,resource to ID; grant create view to ID; ===권한 뺏기=== revoke connect from ID; ===사용자 삭제=== drop user ID cascade; === 계정 export, import 할때 === User export = > Uesr create, grant => User import dba 접속 /as sysdba dba권한 주기 ..