Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- SQL
- Spring
- Spring Cloud Feign
- JPA
- aws
- 데이터베이스
- 클라우드
- 페이징
- DP
- 오라클
- 디자인 패턴
- 운영체제
- MST
- db
- retry
- 코딩
- Spring Cloud
- Spring Boot
- 백준
- feign
- PL/SQL
- Kafka
- MVC
- 자바
- 알고리즘
- golang
- 자료구조
- Jenkins
- 쿼리
- Intellj
Archives
- Today
- Total
목록case (1)
justgo_developer
조건문(if문, case문)
제어문 : 조건문, 반복문- 조건문 : 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..
IT/Oracle
2018. 12. 3. 22:14