★ 함수 1. 내장형 함수(Built-in Function) 2. 사용자 정의 함수(User Function) ★ 집계 함수(Aggregation Function) 1. count() 2. sum() 3. avg() 4. max() 5. min() ■ 1. Count() 결과 테이블의 레코드 수를 반환한다. number count(컬럼명) null 레코드는 제외된다. 사용 ex) select name from tblCountry; -- 테이블의 레코드 개수 select count(name) from tblCountry; -- 'AS' 에 속한 나라 갯수? select count(name) from tblCountry where continent = 'AS'; select capital from tblCo..
★ Order by 절 결과셋의 정렬(O) 원본 테이블의 정렬(사용자가 관여 불가능 > 오라클 스스로) oredr by 정렬 컬럼 (asc : 오름차순 | desc : 내림차순) ★ Order By 절 쓰는법 select 컬럼리스트 -- 3. 원하는 컬럼들을 from 테이블 -- 1. 테이블로부터 where 조건; -- 2. 원하는 행들을 order by 정렬기준; -- 4. 순서대로 ■ Order By 사용예제 select * from tblCountry order by name asc; select * from tblCountry order by name desc; --null 컬럼을 대상으로 정렬 select * from tblCountry where population is not null ord..
★ 컬럼(Column) 컬럼 명시 select name, buseo from tblInsa; 연산 select name, basicpay, basicpay *2 as basicpay2 from tblInsa; 상수 select name, '홍길동' from tblInsa; ■ 1. distinct 컬럼 리스트에서 사용 중복값 제거 distinct 컬럼명 > distict 컬럼리스트 select * from tblCountry; -- 14개 국가가 각각 속한 대륙을 가져오시오. select continent from tblCountry; -- tblCountry에는 어떤 어떤 대륙이 있나요? > 종류? select distinct continent from tblCountry; -- tblInsa. > 이..
★ Where 절 레코드를 검색한다. 원하는 행만 추출하는 역할 > 결과셋 반환 ★ Where절 검색 순서 select 컬럼리스트 -- 3. 컬럼 지정 from 테이블 -- 1. 테이블 지정 where 조건; -- 2. 조건 지정 ★ where 절 응용 select * from tblCountry where Name = '대한민국'; select * from tblCountry where Continent = 'AS'; select * from tblInsa where basicpay > 2000000; -- 19명 select * from tblInsa where basicpay < 2000000; -- 41명 select * from tblInsa where buseo = '개발부'; select *..
★ ANSI-SQL 자료형(Oracle 자료형(***)) 1. 숫자형 정수, 실수 1-1. number (유효자리) 38자리 이하의 숫자를 표현하는 자료형 12345678901234567890123456789012345678 1*10^-130 ~ 9.9999*10^125 5~22byte 사용방법 1. number 정수, 실수 1*10^-130 ~ 9.9999*10^125 2. number(precision) 정수만 저장(반올림) precision : 저장 가능한 자릿수 3. number(precision, scale) 정수, 실수 precision : 저장 가능한 자릿수 scale : 소수 이하 자릿수(%.1f) 2. 문자형 문자, 문자열 구분 X 1. char 고정 자릿수 문자열 > 컬럼(공간)의 크기..
★ 깃(Git) 설치 먼저 설치하기 위해서 깃(Git) 홈페이지(https://git-scm.com/)에 들어가야 한다. 깃(Git) 홈페이지에 들어오시면 'Latest source Release'라는 부분에 'Download for Windows'를 클릭하셔서 설치할 수 있고, 설치 과정은 계속 다음(또는 Next)을 눌러주면 된다. 보통 윈도우 데스크탑 설치는 64-bit Git for Windows Setup을 설치하면 된다. 설치 완료 ★ 설치 완료 후 Git Bash를 클릭하여 실행한다. (!!사용자명과 이메일 주소는 깃허브의 등록사항과 같아야한다) git config -- global user.name "사용자명" git config --global user.email "아이디@이메일주소" g..