일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Statistics
- 코딩테스트
- NLP
- 논문리뷰
- SQL코테
- GRU
- Window Function
- nlp논문
- sql
- update
- 표준편차
- MySQL
- 짝수
- 그룹바이
- 카이제곱분포
- t분포
- CASE
- torch
- leetcode
- HackerRank
- SQL 날짜 데이터
- inner join
- 자연어 논문 리뷰
- 설명의무
- sigmoid
- LSTM
- airflow
- 자연어 논문
- 자연어처리
- 서브쿼리
- Today
- Total
목록DATA ANALYSIS/SQL (32)
HAZEL
Top Earners >> 문제 We define an employee's total earnings to be their monthly salary x months worked, and the maximum total earnings to be the maximum total earnings for any employee in the Employee table. Write a query to find the maximum total earnings for all employees as well as the total number of employees who have maximum total earnings. Then print these values as space-separated integers...
1. Type of Triangle >> 문제 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 valu..