일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 백준
- 백준 3085번
- 백준 17451번
- 깃헙
- ubuntu
- 모각코
- 백준 15787번
- javascript
- 알고리즘
- 머신러닝과 딥러닝
- 백준 18310번
- react
- 자바
- 백준 2512번
- 백준 1331번
- SWEA 15612번
- 다이나믹 프로그래밍
- 백준 16918번
- AWS
- 백준 1987
- java_programming
- 그래프
- HUFS 모각코 캠프
- 백준 1253번
- 명품자바
- SQL
- 다이나믹프로그래밍
- 그리디
- Python
- MySQL
Archives
- Today
- Total
목록GROUP BY (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