일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- HackerRank
- 피그마인디언
- eda
- Inventory Optimization
- Labor Management System
- TensorFlowGPU
- tensorflow
- MySQL
- oracle
- SQL
- ProfileReport
- 신경쓰기의 기술
- 당신의 인생이 왜 힘들지 않아야 한다고 생각하십니까
- 데이터분석
- SKU Consolidation
- 웨어하우스 보관 최적화
- ModelCheckPoint
- Product Demand
- Gaimification
- kaggle
- 코딩테스트연습
- ABC Analysis
- 코딩테스트
- 딥러닝
- 프로그래머스
- forecast
- MS SQL Server
- pandas profiling
- leetcode
- 파이썬
- Today
- Total
목록MySQL (67)
오늘도 배운다

문제 Query the smallest Northern Latitude (LAT_N) from STATION that is greater than 38.7780. Round your answer to 4 decimal places. 제출답안(MySQL) SELECT ROUND(MIN(lat_n), 4) FROM station WHERE lat_n > 38.7780 문제 바로가기(MySQL)

문제 Query the Western Longitude (LONG_W) for the largest Northern Latitude (LAT_N) in STATION that is less than 137.2345. Round your answer to 4 decimal places. 제출답안(MySQL) SELECT ROUND(long_w, 4) FROM station WHERE lat_n = (SELECT MAX(lat_n) FROM station WHERE lat_n < 137.2345) 문제 바로가기(MySQL)

문제 Query the greatest value of the Northern Latitudes (LAT_N) from STATION that is less than 137.2345 . Truncate your answer to 4 decimal places. 제출답안(MySQL) SELECT ROUND(MAX(lat_n),4) FROM station WHERE lat_n

문제 Query the sum of Northern Latitudes (LAT_N) from STATION having values greater than 38.7880 and less than 137.2345. Truncate your answer to 4 decimal places. 제출답안(MySQL) SELECT ROUND(SUM(lat_n),4) FROM station WHERE lat_n >38.7880 AND lat_n
문제 Generate the following two result sets: 1. Query an alphabetically ordered list of all names in OCCUPATIONS, immediately followed by the first letter of each profession as a parenthetical (i.e.: enclosed in parentheses). For example: AnActorName(A), ADoctorName(D), AProfessorName(P), and ASingerName(S). 2. Query the number of ocurrences of each occupation in OCCUPATIONS. Sort the occurrences ..

문제 Write a query identifying the type of each record in the TRIANGLES table using its three side lengths. Output one of the following statements for each record in the table: - Equilateral: It's a triangle with sides of equal length. - Isosceles: It's a triangle with sides of equal length. - Scalene: It's a triangle with sides of differing lengths. - Not A Triangle: The given values of A, B, and..

문제 Query the Name of any student in STUDENTS who scored higher than 75 Marks. Order your output by the last three characters of each name. If two or more students both have names ending in the same last three characters (i.e.: Bobby, Robby, etc.), secondary sort them by ascending ID. Input Format The STUDENTS table is described as follows: The Name column only contains uppercase (A-Z) and lowerc..

문제 Query the list of CITY names from STATION that do not start with vowels and do not end with vowels. Your result cannot contain duplicates. Input Format The STATION table is described as follows: 제출답안(MySQL) SELECT DISTINCT(city) FROM station WHERE city REGEXP '^[^aeiou].*[^aeiou]$' 풀이(MySQL) 더보기 MySQL 정규표현식 참고자료 문제 바로가기(MySQL)