Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- geometry
- 코테
- Data Structure
- greedy
- Stack
- 자바
- java
- SQL
- Method
- two pointers
- Number Theory
- bit manipulation
- Counting
- Class
- array
- Binary Search
- hash table
- sorting
- implement
- 파이썬
- Tree
- 구현
- 코딩테스트
- Math
- dynamic programming
- Matrix
- database
- string
- Binary Tree
- simulation
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1527. Patients With a Condition 본문
1. Input
1) Table: Patients (pk: patient_id)
2. Output
1) Type 1 Diabetes인 환자의 모든 정보 출력하기
- Type 1 Diabetes는 항상 'DIAB1'로 시작한다.
3. Example
4. Code
1) 첫 코드(2023/03/19)
select *
from Patients
where (conditions like 'DIAB1%') or (conditions like '% DIAB1%');
'코딩테스트 풀이 > SQL' 카테고리의 다른 글
[LeetCode/Easy] 1729. Find Followers Count (0) | 2023.03.29 |
---|---|
[LeetCode/Easy] 1587. Bank Account Summary II (0) | 2023.03.29 |
[LeetCode/Easy] 1407. Top Travellers (0) | 2023.03.19 |
[LeetCode/Easy] 620. Not Boring Movies (0) | 2023.03.17 |
[LeetCode/Easy] 607. Sales Person (0) | 2023.03.16 |