나만 보는 SQL~
오라클
1. DBMS(DatBase Management System)
https://db-engines.com/en/ranking
DB-Engines Ranking
Popularity ranking of database management systems.
db-engines.com
2. DBMS 역사
1) 1세대 - 화일 시스템
2) 2세대 - 계층형
3) 3세대 - 망형
4) 4세대 - 관계형
* 현재 가장 많이 사용되는 형태
5) 5세대 - 객체 지향형
3. 그리드 컴퓨팅
위치상으로 분리되어 있찌만 원기리 통신망을 이용하여 여러 대의 컴퓨터를 가상화시켜 하나의 대용량 시스템을 정리
4. 테이블
= 파이썬의 데이터 프레임
= 엑셀의 시트
5. Oracle SQL Developer
6. 명령어
- sys, hr, scott -> conn /as sysdba, conn ID/PW , alter user table_name account unlock; , alter user table_name identified by hr; show user
- SELECT* FROM table_name
- desc[ribe] table_name
- DISTINCT : 중복 제거(=total)
- SELECT table_name AS new_table_name
- SELECT table_name1 || ' ' || table_name2 "new_table_name"
- and, or, not, not in
- WHERE table_name between (range1) and (range2)
반응형
'데이터분석' 카테고리의 다른 글
[23.06.22] SQL - 15(1) (0) | 2023.06.22 |
---|---|
[23.06.21] SQL - 14(1) (0) | 2023.06.21 |
[23.06.19] Python time series - 12(3) (0) | 2023.06.19 |
[23.06.19] Python pandas titanic problem - 12(2) (0) | 2023.06.19 |
[23.06.19] Python groupby, aggregate, transform, filter - 12(1) (0) | 2023.06.19 |