일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 알고리즘
- Spring Cloud Feign
- 데이터베이스
- Spring Cloud
- retry
- 쿼리
- JPA
- db
- 클라우드
- 디자인 패턴
- MST
- 페이징
- feign
- Intellj
- SQL
- 운영체제
- Spring
- PL/SQL
- Kafka
- 코딩
- MVC
- DP
- 백준
- aws
- 자료구조
- Spring Boot
- Jenkins
- 자바
- 오라클
- golang
- Today
- Total
목록쿼리 (4)
justgo_developer
커서(cursor): 쿼리문에 의해서 반환되는 결과값들 저장하는 메모리 공간 Fetch: 커서에서 원하는 결과값을 추출하는것 - 커서의 종류. 명시적(Explicit) 커서 : 사용자가 선언해서 생성 후 사용하는 SQL 커서. 주로 여러개의 행을 처리하고자 할 경우 사용.. 묵시적(implicit) 커서 : 오라클에서 자동으로 선언해주는 SQL 커서. 사용자는 생성 유무를 알수없음. - 커서의 속성1. %Found - 할당할 레코드가 있는 경우 true 반환2. %isOpen - 커서가 오픈 상태일 경우 true 반환3. %NotFound - 할당할 레코드가 없는 경우 true 반환4. %RowCount - 카운터 역할을 한다. 오픈 됬을 경우 0, 패치발생할때마다 1씩 증가 - 커서의 처리단계(명시적 ..
looppl/sql 문장;exit(조건);end loop; ex)12345678910declare num number := 0; begin loop dbms_output.put_line(num); num := num + 1; exit when num > 10; end loop;end;cs while 조건 loop실행 문장;end loop; 12345678declare num number := 0;begin while num 5); tot := tot+i; dbms_output.put_line(tot); end loop;end;cs
제어문 : 조건문, 반복문- 조건문 : if문, case문- 반복문 : basic loop문, while문(반복횟수를 정하지 않을 경우) for문(반복횟수를 지정할 경우)//if문 : if~end if문 if(조건) then실행명령; end if; 12345678910111213141516171819202122232425262728293031declare emp_id employees.employee_id%type; emp_name employees.last_name%type; emp_dept employees.department_id%type; dept_name varchar2(20) := null;begin select employee_id, last_name, department_id into em..
rowtype 변수를 활용한 데이터의 변경 123456789101112131415declarec_rec row_test%rowType begin select * into c_rec from row_test where no = 3; c_rec.name := '홍길동'; //c_rec row중 name 값을 홍길동으로 update row_test2 set row = c_rec //행전체를 c_rec로 변경 where no = 3;end; Colored by Color Scriptercs 사용자로부터 두개의 숫자를 입력받아서 합을 구하는 예치환연산자 & 사용 1234567891011declareno1 number:= &no1;no2 number:= &no2;vsum number; begin vsum:= no1..