일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 처음 만나는 AI 수학 with Python
- 선형대수
- d
- GIT
- 네트워크 설정
- 스프링 시큐리티
- 코드로배우는스프링부트웹프로젝트
- 코드로배우는스프링웹프로젝트
- 친절한SQL튜닝
- 처음 만나는 AI수학 with Python
- 리눅스
- iterator
- 자바편
- baeldung
- 서버설정
- resttemplate
- 자료구조와 함께 배우는 알고리즘 입문
- 스프링부트핵심가이드
- 데비안
- 알파회계
- 이터레이터
- network configuration
- 자료구조와함께배우는알고리즘입문
- 목록처리
- Kernighan의 C언어 프로그래밍
- 구멍가게코딩단
- ㅒ
- /etc/network/interfaces
- 티스토리 쿠키 삭제
- 페이징
- Today
- Total
목록LeetCode/SQL (4)
bright jazz music
SQL Schema Table: Customers +-------------+---------+ | Column Name | Type | +-------------+---------+ | id | int | | name | varchar | +-------------+---------+ id is the primary key column for this table. Each row of this table indicates the ID and name of a customer. Table: Orders +-------------+------+ | Column Name | Type | +-------------+------+ | id | int | | customerId | int | +----------..
SQL Schema Table: Customer +-------------+---------+ | Column Name | Type | +-------------+---------+ | id | int | | name | varchar | | referee_id | int | +-------------+---------+ id is the primary key column for this table. Each row of this table indicates the id of a customer, their name, and the id of the customer who referred them. Write an SQL query to report the names of the customer that..
SQL Schema Table: Products +-------------+---------+ | Column Name | Type | +-------------+---------+ | product_id | int | | low_fats | enum | | recyclable | enum | +-------------+---------+ product_id is the primary key for this table. low_fats is an ENUM of type ('Y', 'N') where 'Y' means this product is low fat and 'N' means it is not. recyclable is an ENUM of types ('Y', 'N') where 'Y' means..
https://leetcode.com/problems/big-countries/ Big Countries - 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 +-------------+---------+ | Column Name | Type | +-------------+---------+ | name | varchar | | continent | varchar | | area | int | | population | int | | gdp | int | +----..