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

문제 Query the list of CITY names from STATION that either do not start with vowels or 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)

문제 Query the list of CITY names from STATION that 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]$' 풀이(MySQL) 더보기 MySQL 정규표현식 참고자료 문제 바로가기(MySQL)

문제 Query the list of CITY names from STATION that do not start 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]' 풀이(MySQL) 더보기 MySQL 정규표현식 참고자료 문제 바로가기(MySQL)

문제 Query the list of CITY names from STATION which have vowels (i.e., a, e, i, o, and u) as both their first and last characters. 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)

문제 Query the list of CITY names ending with vowels (a, e, i, o, u) from STATION. Your result cannot contain duplicates. Input FormatThe STATION table is described as follows: 제출답안(MySQL) SELECT DISTINCT(city) FROM station WHERE city REGEXP 'a$|e$|i$|o$|u$' SELECT DISTINCT(city) FROM station WHERE city REGEXP 'a$|e$|i$|o$|u$' 풀이(MySQL) 더보기 MySQL 정규표현식 사용 참고자료 - https://www.geeksforgeeks.org/mysql..

문제 Query the list of CITY names starting with vowels (i.e., a, e, i, o, or u) from STATION. Your result cannot contain duplicates. Input FormatThe STATION table is described as follows: 제출답안(MySQL) SELECT DISTINCT(city) FROM station WHERE city REGEXP '^a|^e|^i|^o|^u' 풀이(MySQL) 더보기 MySQL 정규식 적용 참고자료 - https://www.geeksforgeeks.org/mysql-regular-expressions-regexp/ 개선답안(MySQL) SELECT DISTINCT(city..

문제 Query the two cities in STATION with the shortest and longest CITY names, as well as their respective lengths (i.e.: number of characters in the name). If there is more than one smallest or largest city, choose the one that comes first when ordered alphabetically.The STATION table is described as follows: 제출답안(MySQL) (SELECT city, LENGTH(city) FROM station ORDER BY 2 DESC, 1 LIMIT 1) UNION (S..

문제 Find the difference between the total number of CITY entries in the table and the number of distinct CITY entries in the table.The STATION table is described as follows: 제출답안(MySQL) SELECT COUNT(city) - COUNT(DISTINCT(city)) FROM station 문제 바로가기(MySQL)