INPUT 명령어

 

*사용법

 

SQL>I

   1*from student

SQL>0 select name, studno

SQL>I

   1 select name, studno

   2* from student

SQL>del

SQL>I

   1* select name, studno

SQL>I

   1 select name, studno

   2 from student

   3* where studno > 20000

SQL>del 2

SQL>I

   1 select naem, studno

   2* where studno > 20000

SQL>I 1

   1* select naem, studno

SQL>i from student

SQL>I

   1 select name, studno

   2 from student

   3* where studno > 20000

 

 

 

 

INPUT 명령어

 

*INPUT 명령어

-SQL 버퍼에 저장된 SQL 명령문의 현재 라인 다음에 새로운 라인을 추가하는 경우에 사용

-I[NPUT] : 행 수에 대한 제한 없이 사용

-I[NPUT] text : text를 구성하는 한 행을 삽입

-0 text : 1행 앞에 한 행을 삽입

 

*사용법

 I[NPUT] [text] 또는 0 text

 

 

 

'오라클 > Oracle,SQL' 카테고리의 다른 글

오라클공부 104. APPEND 명령어  (0) 2015.09.03
오라클공부 103. INPUT 명령어  (0) 2015.09.03
오라클공부 101. DEL 명령어  (0) 2015.09.02
오라클공부 100. DEL 명령어  (0) 2015.09.02
오라클공부 99. n 명령어  (0) 2015.09.02

DEL 명령어

 

*사용예

 

DEL : 현재 행을 삭제합니다

DEL n : n번째 행을 삭제

DEL m n : m~n번째까지 삭제

SQL>l

1 select name, studno

2 from student

3* where studno> 20000

 

SQL>del

 

SQL>l

1 select name, studno

2* from student

 

SQL>del 1

 

SQL>l

1* from student

 

 

 

'오라클 > Oracle,SQL' 카테고리의 다른 글

오라클공부 103. INPUT 명령어  (0) 2015.09.03
오라클공부 102. INPUT 명령어  (0) 2015.09.02
오라클공부 100. DEL 명령어  (0) 2015.09.02
오라클공부 99. n 명령어  (0) 2015.09.02
오라클공부 98. LIST 명령어  (0) 2015.09.02

DEL 명령어

 

*DEL 명령어

-SQL 버퍼에 저장된 SQL 명령문 중에서 일부 내용을 삭제하기 위한 명령어

 

*사용법

DEL {n | m n }

 

 

 

 

 

'오라클 > Oracle,SQL' 카테고리의 다른 글

오라클공부 102. INPUT 명령어  (0) 2015.09.02
오라클공부 101. DEL 명령어  (0) 2015.09.02
오라클공부 99. n 명령어  (0) 2015.09.02
오라클공부 98. LIST 명령어  (0) 2015.09.02
오라클공부 97. LIST 명령어  (0) 2015.09.02

n 명령어

 

*n

현재 행으로 만들 행을 지정

 

*n text

n행을 text로 바꿈

 

SQL>1

  1*select

SQL>2

  2* from student

 

SQL>3

  3* where studno> 20000

 

SQL>l

  1 select name, studno

  2 from student

  3* where studno> 20000

 

 

 

 

 

LIST 명령어

 

*사용법

SQL>select*

  2 from student

  3 where studno> 20000;

 

SQL>l

  1 select*

  2 from student

  3* where studno> 20000

 

SQL>l 1

  1* select*

 

SQL>l 2 3

  2 from student

  3* where studno> 20000

 

 

 

 

 

LIST 명령어

 

*LIST 명령어

-버퍼에 저장된 SQL 명령문을 출력하기 위해 사용하는 명령어

-특정 라인 또는 특정 범위, 전체 범위의 라인에 포함된 명령문을 확인 또는 편집시 특정 라인으로 이동하기 위해 사용

 

*사용법

 L[IST] {n | m n}

-'RUN' 명령어는 SQL 명령문과 실행결과 출력

-'/' 실행 결과만 출력

 

 

SQL*Plus 편집 명령어

 

*SQL*Plus 편집 명령어

 

 

+ Recent posts