'ORACLE/SQL'에 해당되는 글 52건

  1. 2007.11.17 유용한 DB 쿼리
  2. 2007.09.17 demobld.sql
ORACLE/SQL2007. 11. 17. 01:08
반응형

▶ DB에 있는 모든 Table 이름보기

    select table_name from user_tables

 

테이블 명 바꾸기 A -> B

 

alter table  A rename to B

 

   ▶ Table의 Primary Key 찾기

    select * from user_ind_columns where table_name = 'CodeTable'

   ▶ 인수전달

 

    select * from user_ind_columns where table_name = '&1' 

   →; save key 

      SQL> start key CodeTable

   ▶ 서로 연결되는 Key를 찾는 방법 

   select constraint_name, constraint_type, r_constraint_name  

    from user_constraints

       where table_name = 'TABLE_NAME

  ▶ TABLE 구조 보기

    DESC TABLE_NAME

   ▶ Constraint 확인

    select table_name, constraint_name, constraint_type

      from user_constraints

    where table_name in ('DEPARTMENT','EMPLOYEE');

   ▶ 테이블 COPY 하기

    create table emp_41

    as

    select id, last_name, userid, start_date from s_emp

    where dept_id = 41;

    → where절에 엉뚱한 조건을 주면 emp_41이란 이름으로 테이블이 만들어진다.   

   ▶ 선택한 Row만큼만 보여주기

    select * from tmp_table

    where rownum <= 100

    → 이렇게 하면 데이터가 10000건이 있더라도, 1~100건만 보여주게 된다.

   ▶ 오라클의 모든 유저 보기

    select * from all_users

    KO16KSC5601 이면 한글...

    US7ASCII 이면 영문이다. → regedit에서 편집하면 간단히 해결.

   ▶ Space 있는 값을 Null로 비교

    RTRIM(a.ymd_myun) IS NULL

   ▶ Desc명령으로 Table구조 보는 효과와 같은 방법

    SELECT column_name, data_type, data_length, nullable FROM cols

    WHERE table_name = 'YTB_CARCOM'

    → 반드시 테이블명은 대문자 이어야 한다.

   ▶ Function Script 보는 방법.

    select text from user_source where name = 'FUNCTION_NAME'

   ▶ 요일 찾는 방법.

    select TO_CHAR(sysdate,'D') from dual

반응형

'ORACLE > SQL' 카테고리의 다른 글

&lt;25가지 SQL작성법&gt;  (0) 2008.02.19
oracle에서 hint의 사용  (0) 2008.02.14
Materialized View 설명  (0) 2008.02.14
유용한 오라클 명령어  (0) 2008.01.28
demobld.sql  (0) 2007.09.17
Posted by [PineTree]
ORACLE/SQL2007. 9. 17. 23:29
반응형

CREATE TABLE EMP
       (EMPNO decimal(4) NOT NULL,
        ENAME varchar(10),
        JOB varchar(9),
        MGR decimal(4),
        HIREdate varchar(14),
        SAL number(7,2),
        COMM number(7,2),
        DEPTNO number(2));

INSERT INTO EMP VALUES
        (7369, 'SMITH',  'CLERK',     7902,
         '1980-12-17',  800, NULL, 20);
INSERT INTO EMP VALUES
        (7499, 'ALLEN',  'SALESMAN',  7698,
         '1981-2-20', 1600,  300, 30);
INSERT INTO EMP VALUES
        (7521, 'WARD',   'SALESMAN',  7698,
         '1981-2-22', 1250,  500, 30);
INSERT INTO EMP VALUES
        (7566, 'JONES',  'MANAGER',   7839,
         '1981-4-2',  2975, NULL, 20);
INSERT INTO EMP VALUES
        (7654, 'MARTIN', 'SALESMAN',  7698,
         '1981-9-28', 1250, 1400, 30);
INSERT INTO EMP VALUES
        (7698, 'BLAKE',  'MANAGER',   7839,
         '1981-5-1',  2850, NULL, 30);
INSERT INTO EMP VALUES
        (7782, 'CLARK',  'MANAGER',   7839,
         '1981-6-9',  2450, NULL, 10);
INSERT INTO EMP VALUES
        (7788, 'SCOTT',  'ANALYST',   7566,
         '1982-12-9', 3000, NULL, 20);
INSERT INTO EMP VALUES
        (7839, 'KING',   'PRESIDENT', NULL,
         '1981-11-17', 5000, NULL, 10);
INSERT INTO EMP VALUES
        (7844, 'TURNER', 'SALESMAN',  7698,
         '1981-12-8',  1500,    0, 30);
INSERT INTO EMP VALUES
        (7876, 'ADAMS',  'CLERK',     7788,
         '1983-1-12', 1100, NULL, 20);
INSERT INTO EMP VALUES
        (7900, 'JAMES',  'CLERK',     7698,
         '1981-12-3',  950, NULL, 30);
INSERT INTO EMP VALUES
        (7902, 'FORD',   'ANALYST',   7566,
         '1981-12-3',  3000, NULL, 20);
INSERT INTO EMP VALUES
        (7934, 'MILLER', 'CLERK',     7782,
         '1982-1-23', 1300, NULL, 10);

CREATE TABLE DEPT
       (DEPTNO number(2),
        DNAME varchar2(14),
        LOC varchar2(13) );

INSERT INTO DEPT VALUES (10, 'ACCOUNTING', 'NEW YORK');
INSERT INTO DEPT VALUES (20, 'RESEARCH',   'DALLAS');
INSERT INTO DEPT VALUES (30, 'SALES',      'CHICAGO');
INSERT INTO DEPT VALUES (40, 'OPERATIONS', 'BOSTON');

CREATE TABLE BONUS
        (ENAME varchar2(10),
         JOB   varchar2(9),
         SAL   number(7,2),
         COMM  number(7,2));

CREATE TABLE SALGRADE
        (GRADE number(1),
         LOSAL number(7,2),
         HISAL number(7,2));

INSERT INTO SALGRADE VALUES (1,  700, 1200);
INSERT INTO SALGRADE VALUES (2, 1201, 1400);
INSERT INTO SALGRADE VALUES (3, 1401, 2000);
INSERT INTO SALGRADE VALUES (4, 2001, 3000);
INSERT INTO SALGRADE VALUES (5, 3001, 9999);

반응형

'ORACLE > SQL' 카테고리의 다른 글

&lt;25가지 SQL작성법&gt;  (0) 2008.02.19
oracle에서 hint의 사용  (0) 2008.02.14
Materialized View 설명  (0) 2008.02.14
유용한 오라클 명령어  (0) 2008.01.28
유용한 DB 쿼리  (0) 2007.11.17
Posted by [PineTree]