본문 바로가기

전체 글

(26)
Triangle Judgement - CASE 절2 Triangle Judgement - LeetCode Triangle Judgement - LeetCode Can you solve this real interview question? Triangle Judgement - Table: Triangle +-------------+------+ | Column Name | Type | +-------------+------+ | x | int | | y | int | | z | int | +-------------+------+ In SQL, (x, y, z) is the primary key column for leetcode.com Table: Triangle +-------------+------+ | Column Name | Type | +-----..
Tree Node - [ CASE 절로 원하는 칼럼값 지시 ] Tree Node - LeetCode Tree Node - LeetCode Can you solve this real interview question? Tree Node - Table: Tree +-------------+------+ | Column Name | Type | +-------------+------+ | id | int | | p_id | int | +-------------+------+ id is the column with unique values for this table. Each row of this leetcode.com Table: Tree +-------------+------+ | Column Name | Type | +-------------+------+ | id ..
Classes More Than 5 Students - 수강생이 N명 이상인 수업 찾기 Classes More Than 5 Students Classes More Than 5 Students - LeetCode Can you solve this real interview question? Classes More Than 5 Students - Table: Courses +-------------+---------+ | Column Name | Type | +-------------+---------+ | student | varchar | | class | varchar | +-------------+---------+ (student, class) is the leetcode.com [수강생이 N명 이상인 수업 찾기] Table: Courses +-------------+---------..
Big Countries - 조건에 맞는 big country 추출하기 Big Countries - LeetCode Big Countries - LeetCode Can you solve this real interview question? Big Countries - Table: World +-------------+---------+ | Column Name | Type | +-------------+---------+ | name | varchar | | continent | varchar | | area | int | | population | int | | gdp | bigint | +----------- leetcode.com [조건에 맞는 big country 추출하기] Table: World +-------------+---------+ | Column Name..
Find Customer Referee - referee_id 가 N이 아닌 사용자 이름 출력 Find Customer Referee - LeetCode Find Customer Referee - LeetCode Can you solve this real interview question? Find Customer Referee - Table: Customer +-------------+---------+ | Column Name | Type | +-------------+---------+ | id | int | | name | varchar | | referee_id | int | +-------------+---------+ In SQL, id is the leetcode.com [ referee_id 가 2가 아닌 사용자 이름 출력 ] Table: Customer +-------------..
Game Play Analysis IV - 재참여율을 추적 Game Play Analysis IV - LeetCode [ 처음으로 로그인한 날로부터 다음 날에 다시 로그인한 사용자의 비율을 계산 ] +)문제 부가설명 첫 번째 로그인한 날 다음 날에 다시 로그인한 플레이어의 비율을 소수점 이하 2자리까지 반올림하여 보고하는 SQL 구문 작성 =처음으로 로그인한 날로부터 다음 날에 다시 로그인한 사용자의 비율을 계산( 백분율로 표시되며 소수점 이하 두 자리까지 반올림) Table: Activity +--------------+---------+ | Column Name | Type | +--------------+---------+ | player_id | int | | device_id | int | | event_date | date | | games_playe..
Game Play Analysis I - 각 유저들의 가장 빠른 로그인 날짜의 데이터 추출 Game Play Analysis I - LeetCode [ 각 유저들의 가장 빠른 로그인 날짜의 데이터 추출 ] Table: Activity +--------------+---------+ | Column Name | Type | +--------------+---------+ | player_id | int | | device_id | int | | event_date | date | | games_played | int | +--------------+---------+ (player_id, event_date) is the primary key (combination of columns with unique values) of this table. This table shows the activi..
Customers Who Never Order - 주문을 하지 않은 고객의 이름 추출 Customers Who Never Order - LeetCode [주문을 하지 않은 고객의 이름 추출] Table: Customers +-------------+---------+ | Column Name | Type | +-------------+---------+ | id | int | | name | varchar | +-------------+---------+ id is the primary key (column with unique values) for this table. Each row of this table indicates the ID and name of a customer. Table: Orders +-------------+------+ | Column Name | Type |..