본문 바로가기
반응형

Datascience3

Intro to Database (10) : View, Top, Index, Sequence 2019-07-10 View : 한 개 이상의 테이블이나 뷰로 만들어진 가상 테이블로 데이터 자체를 포함하지는 않는다. Simple View - 단일 테이블로 만듬 Join View - 2개 이상의 테이블로 만들어짐 Inline View - from 절에 테이블 대신 select 절이 들어감 TOP-N Query : 상위 몇개의 레코드만 추출 Index : 각 레코드에 빠르게 접근하기 위한 스키마 객체 Sequence : 자동으로 기본키를 연속된 정수로 만들어주는 데이터베이스 객체 실습(1) --dept 20 name, salary*12; create or replace view emp_view as select ename, sal*12 annual_salary from emp where deptno=2.. 2019. 7. 10.
Intro to Database (9) : Subset of SQL(SQL 하위 범주) 2019-07-09 1. DDL(Data definition language) 데이터 베이스의 구조를 정의하는 데 사용된다. CREATE, ALTER, RENAME, DROP, TRUNCATE(*내용만 없어짐) 등 2. DML(Data manipulation language) 데이터 정의, 갱신, 복구 SELECT, INSERT, UPDATE, DELETE, MERGE 3. SQL/PSM(Structured Query Language/Procedural programming capabilities) 순차적 프로그래밍 능력 4. TCL(Transaction control language) 연산자 집합을 통제 COMMIT, ROLLBACK 5. DCL(Data control language) 데이터베이스 권.. 2019. 7. 9.
Intro to Database(3) : Oracle SQL Developer 2019-07-02 (화) SQL Developer를 설치해 더 편하게 SQL문을 작성해보자. http://www.oracle.com/technetwork/developer-tools/sql-developer/overview/index.html SQL Developer Oracle SQL Developer Oracle SQL Developer is a free, integrated development environment that simplifies the development and management of Oracle Database in both traditional and Cloud deployments. SQL Developer offers complete end-to-end developme.. 2019. 7. 2.
반응형