일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- elastic net
- 선형 모형
- 교차 엔트로피
- AWS
- L1정규화
- Git
- L2정규화
- 편향-분산 교환
- 온라인협업
- window function
- 코딩공부
- mysql
- 클라우드컴퓨팅
- hackerrank
- github
- HTML
- early stopping
- full request
- branch
- coding
- leetcode
- PYTHON
- 깃헙협업
- CSS
- merge
- programmers
- sql
- conflict
- RLIKE
- 버전충돌
- Today
- Total
목록sql (20)
Im between cherry
윈도우 함수에서만 가능한 데이터 순위 정하기 1. MySQL ROW_NUMBER Function https://www.mysqltutorial.org/mysql-window-functions/mysql-row_number-function/ MySQL ROW_NUMBER and Its Useful Applications In this tutorial, you will learn about the MySQL ROW_NUMBER() function and how to use it to generate a unique number for each row in the result set. www.mysqltutorial.org SELECT ROW_NUMBER() OVER ( ORDER BY productName ..
1. MySQL LEAD Function LEAD()함수는 현재 행에서 여러 행을 보고 해당 행의 데이터에 액세스 할 수 있는 윈도우 함수입니다. LAG()함수와 비슷하며, LEAD()기능은 현재 행과 동일한 결과 집합 내의 후속 행과의 차이를 계산하기위해 매우 유용하다. LEAD([,offset[, default_value]]) OVER ( PARTITION BY (expr) ORDER BY (expr) ) 이 LEAD()함수는 정렬된 파티션 expression의 offset-th행에서의 값을 반환합니다 . 예시) orders and customers tables SELECT customerName, orderDate, LEAD(orderDate,1) OVER ( PARTITION BY customer..
181. Employees Earning More Than Their Managers https://leetcode.com/problems/employees-earning-more-than-their-managers/ Employees Earning More Than Their Managers - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com The Employee table holds all employees including their managers. Ev..
더보기 한 줄 요약 - INNER JOIN은 INNER JOIN할 원래 테이블에 찾는 테이블 값이 있으면, 찾는 테이블 값만 출력 - OUTER JOIN은 OUTER JOIN할 원래 테이블에 찾는 테이블 값이 있으면, 원래 테이블+찾는 테이블 값 출력 1. 정의 INNER JOIN - 서로 매칭되는 것만 엮어 조회한다. OUTER JOIN - 매칭 뿐만 아니라 매칭되지 않은 데이터도 함께 조회한다. OUTER JOIN에는 Left Outer Join, Right Outer Join, Full Outer Join이 있다. Left Join, Right Join은 미매칭 데이터도 조회할 테이블 방향이다. 따라서 Left Outer Join의 경우 왼쪽에 기입한 테이블이 매칭여부와 상관없이 모두 조회된다. ..
The Report Problem The Report | HackerRank Write a query to generate a report containing three columns: Name, Grade and Mark. www.hackerrank.com You are given two tables: Students and Grades. Students contains three columns ID, Name and Marks. Ketty gives Eve a task to generate a report containing three columns: Name, Grade and Mark. Ketty doesn't want the NAMES of those students who received a ..
Top Earners Problem Top Earners | HackerRank Find the maximum amount of money earned by any employee, as well as the number of top earners (people who have earned this amount). www.hackerrank.com We define an employee's total earnings to be their monthly salaryXmonths worked, and the maximum total earnings to be the maximum total earnings for any employee in the Employee table. Write a query to ..
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..
LIKE '_' 한 글자와 매칭 '홍____'은 '홍'자로 시작하고 4개의 character와 대응 ('홍길동', '홍lina') '%' 여러 문자와 매칭 '홍%'은 첫글자가 '홍'으로 시작 RLIKE '.' 단일 문자와 매칭 '^....$'은 영문4글자, 한글 2글자와 매칭 또는 '^.{4}$'처럼 표기해도 같은 의미임 '[...]' 괄호 내의 어느 문자와도 매칭 [ab]는 'a'나 'b'와 매칭 [a-c]는 'a'나 'b'나 'c'와 매칭 '*' 여러 문자와 매칭(0개 이상) 'a*'은 a가 몇번 반복되는 것과 매칭 '[0-9]*'는 임의의 수와 매칭 '대소문자' 구분한다. '[aA]'는 a나 A와 매칭 '[a-zA-Z]'은 모든 알파벳과 매칭 '^' 패턴 매칭에서 시작하는 문자 '^홍'은 '홍'자로..