일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 백준 1253번
- 그래프
- 백준 2512번
- 백준 16918번
- react
- Python
- 백준 17451번
- 다이나믹 프로그래밍
- java_programming
- 백준 3085번
- 다이나믹프로그래밍
- SWEA 15612번
- 모각코
- 깃헙
- MySQL
- SQL
- AWS
- ubuntu
- 백준 18310번
- 머신러닝과 딥러닝
- 백준 15787번
- javascript
- HUFS 모각코 캠프
- 백준
- 백준 1331번
- 명품자바
- 알고리즘
- 그리디
- 자바
- 백준 1987
Archives
- Today
- Total
목록aggregation (1)
차곡차곡
[SQL] SQL Practice #3
Oracle Practice # 10 - Aggregation 1. Display the lowest last name and the highest last name alphabetically (Customers table). SELECT MIN(last_name), MAX(last_name) FROM ACDB_CUSTOMERS; 2. Display the total number of states (allowing redundancy) and the number of distinct states (Customers table). SELECT COUNT(state), COUNT(DISTINCT state) FROM ACDB_CUSTOMERS; 3. Display the lowest, highest, an..
2021 데이터 청년 캠퍼스/데이터베이스
2021. 7. 9. 14:38