일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 카이제곱분포
- CASE
- 표준편차
- SQL 날짜 데이터
- 논문리뷰
- 설명의무
- NLP
- sql
- 서브쿼리
- airflow
- MySQL
- 자연어 논문 리뷰
- t분포
- LSTM
- Statistics
- HackerRank
- Window Function
- 자연어처리
- 자연어 논문
- nlp논문
- inner join
- update
- GRU
- SQL코테
- 그룹바이
- 코딩테스트
- sigmoid
- leetcode
- 짝수
- torch
- Today
- Total
목록update (2)
HAZEL
196. Delete Duplicate Emails >> 문제 Write a SQL query to delete all duplicate email entries in a table named Person, keeping only unique emails based on its smallest Id. +----+------------------+ | Id | Email | +----+------------------+ | 1 | john@example.com | | 2 | bob@example.com | | 3 | john@example.com | +----+------------------+ Id is the primary key column for this table. For example, afte..
627. Swap Salary >> 문제 +-------------+----------+ | Column Name | Type | +-------------+----------+ | id | int | | name | varchar | | sex | ENUM | | salary | int | +-------------+----------+ id is the primary key for this table. The sex column is ENUM value of type ('m', 'f'). The table contains information about an employee. Write an SQL query to swap all 'f' and 'm' values (i.e., change all 'f..