일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 2164 카드2
- Merge Repositories
- geopandas
- NLP
- Selenium
- 셀레니움
- plotly dash
- to shp
- clustering
- 인스타그램
- 혁신성장부문
- 알고리즘
- Python
- 해시태그
- kmeans
- 코랩 런타임
- convert to shp
- string to list
- flask
- 파이썬
- Chat-GPT
- python buildpacks
- 플라스크
- 백준
- colab runtime
- 크롤링
- 웹페이지
- geoDataFrame
- 괄호 문제
- Crawling
Archives
- Today
- Total
목록MySQL/Problem Solving (14)
코딩코딩코딩

SELECT salary*months AS earnings , count(*) FROM Employee GROUP BY earnings ORDER BY earnings DESC LIMIT 1;
MySQL/Problem Solving
2022. 1. 12. 01:52

SELECT ROUND(LONG_W, 4) FROM STATION WHERE LAT_N < 137.2345 ORDER BY LAT_N DESC LIMIT 1;
MySQL/Problem Solving
2022. 1. 11. 22:28

Answer SELECT name FROM students WHERE marks > 75 ORDER BY SUBSTRING(name, -3), id;
MySQL/Problem Solving
2022. 1. 10. 01:05

Answer SELECT name FROM employee WHERE salary >= 2000 AND months < 10 ORDER BY employee_id;
MySQL/Problem Solving
2022. 1. 10. 00:56

Answer SELECT name FROM employee ORDER BY name;
MySQL/Problem Solving
2022. 1. 10. 00:54