1. ROUNDround ( '칼럼명 | 표현식' , n ) round 함수는 칼럼, 표현식 또는 값을 소수점 n 자릿수가 되도록 반올림을 한다. ※ dual 은 문법을 맞춰주기 위한 더미 테이블 (가짜 테이블) 이다. select round (376.871 , 2) from dual; -- 결과 : 376.87select round (376.871 , 1) from dual; -- 결과 : 376.9select round (376.871 , 0) from dual; -- 결과 : 377select round (376.871) from dual; -- 결과 : 377select round (376.871 , -1) from dual; -- 결과 : 380select round (376.871 , -2) ..
1. 기본 SELECT 문 select [칼럼명] from [테이블명]; select 문을 이용해 테이블의 정보를 검색할 수 있다. select * from employees; * 을 이용해 employees 테이블의 모든 칼럼을 불러올 수 있다. select employee_id, last_name, salary from employees; employees 테이블의 특정 칼럼을 불러올 수 있다. 2. USER_TABLES 이용하기 select * from user_tables; user_tables 을 이용해 데이터 베이스 안의 모든 테이블을 확인할 수 있다. 3. 산술연산자, DUAL select salary + 1000 from employees; -- salary(연봉) + 1000 출력 sel..
- Total
- Today
- Yesterday
- python 3.8.1
- sql 근속연수
- SQL 기본
- oracle
- sql where 연산자
- sysdate 날짜 연산
- undefine
- Python
- sql null
- sql where
- sql 근속일수
- 치환 변수
- SQL 날짜
- 눈솜
- sql 날짜연산
- sql months_between
- 동탄수철이네
- sql undefine
- sql oracle
- Where
- SQL
- 오라클
- sql 날짜함수
- 파이썬 설치
- sql 근속월수
- 파이썬
- 동탄눈솜
- sql 치환 변수
- where 절
- sql dual
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |