일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 온라인협업
- CSS
- full request
- RLIKE
- elastic net
- L1정규화
- mysql
- PYTHON
- AWS
- Git
- github
- leetcode
- programmers
- 선형 모형
- 편향-분산 교환
- branch
- conflict
- merge
- L2정규화
- window function
- 교차 엔트로피
- early stopping
- 클라우드컴퓨팅
- 깃헙협업
- 버전충돌
- 코딩공부
- hackerrank
- coding
- sql
- HTML
- Today
- Total
목록분류 전체보기 (112)
Im between cherry
Employee Salaries Problem Employee Salaries | HackerRank Print the names of employees who earn more than $2000 per month and have worked at the company for less than 10 months. www.hackerrank.com Write a query that prints a list of employee names (i.e.: the name attribute) for employees in Employee having a salary greater than $2000 per month who have been employees for less than 10 months. Sort..
Employee Names Problem Write a query that prints a list of employee names (i.e.: the name attribute) from the Employee table in alphabetical order. - solution SELECT name FROM employee ORDER BY name ASC
Higher Than 75 Marks Problem Higher Than 75 Marks | HackerRank Query the names of students scoring higher than 75 Marks. Sort the output by the LAST three characters of each name. www.hackerrank.com Query the Name of any student in STUDENTS who scored higher than 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 th..
Weather Observation Station 12 Problem 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. - Solution SELECT DISTINCT city FROM station WHERE city NOT REGEXP '^[aeiou]' AND city NOT REGEXP '[aeiou]$' SELECT Distinct City FROM Station WHERE City NOT rLike '^[aeiou]' AND City NOT rLike '[aeiou]$'
Weather Observation Station 11 Problem Weather Observation Station 11 | HackerRank Query a list of CITY names not starting or ending with vowels. www.hackerrank.com 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. Solution SELECT DISTINCT CITY FROM STATION WHERE SUBSTR(CITY,1,1) NOT IN ('a','e','i','o..
Weather Observation Station 10 Problem Weather Observation Station 10 | HackerRank Query a list of CITY names not ending in vowels. www.hackerrank.com Query the list of CITY names from STATION that do not end with vowels. Your result cannot contain duplicates. Solution SELECT DISTINCT CITY FROM STATION WHERE CITY NOT LIKE '%a' AND CITY NOT LIKE '%e' AND CITY NOT LIKE '%i' AND CITY NOT LIKE '%o' ..
Weather Observation Station 9 Problem Weather Observation Station 9 | HackerRank Query an alphabetically ordered list of CITY names not starting with vowels. www.hackerrank.com Query the list of CITY names from STATION that do not start with vowels. Your result cannot contain duplicates. Solution SELECT DISTINCT CITY FROM STATION WHERE SUBSTR(CITY, 1, 1) NOT IN ('a','e','i','o','u'); SELECT DIST..
Weather Observation Station 8 Problem 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. - Solution SELECT DISTINCT CITY FROM station WHERE SUBSTR(CITY,1,1) IN ('a','e','i','o','u') AND CITY LIKE '%a' or SUBSTR(CITY,1,1) IN ('a','e','i','o','u') AND CITY LIKE '%e' or SUBSTR(CITY,1,1..