알고리즘

[SQL] 1757. Recyclable and Low Fat Products (Easy)

파뱁 2024. 12. 26. 11:14
728x90

너어어어무 알고리즘 및 sql 에 손 떼고 있어서 (물론 회사 업무의 sql은 했었음)

쉬운거 부터 하나 가져왔어요

https://leetcode.com/problems/recyclable-and-low-fat-products/?envType=study-plan-v2&envId=top-sql-50

⬆️문제 전문

 

Table: Products

+-------------+---------+
| Column Name | Type    |
+-------------+---------+
| product_id  | int     |
| low_fats    | enum    |
| recyclable  | enum    |
+-------------+---------+
product_id is the primary key (column with unique values) for this table.
low_fats is an ENUM (category) of type ('Y', 'N') where 'Y' means this product is low fat and 'N' means it is not.
recyclable is an ENUM (category) of types ('Y', 'N') where 'Y' means this product is recyclable and 'N' means it is not.
 

Write a solution to find the ids of products that are both low fat and recyclable.

Return the result table in any order.

The result format is in the following example.

 

Example 1:

Input: 
Products table:
+-------------+----------+------------+
| product_id  | low_fats | recyclable |
+-------------+----------+------------+
| 0           | Y        | N          |
| 1           | Y        | Y          |
| 2           | N        | Y          |
| 3           | Y        | Y          |
| 4           | N        | N          |
+-------------+----------+------------+
Output: 
+-------------+
| product_id  |
+-------------+
| 1           |
| 3           |
+-------------+
Explanation: Only products 1 and 3 are both low fat and recyclable.

 

 

이게 문제입니다

 

Products 테이블에서 결과를 뽑아내면 되는데

테이블 데이터를 확인해봤을때 low_fat, recyclable 이 Y일 경우를 뽑아내라는 것 같았음

 

그래서 다음과 같이 씀

select product_id
from Products
where low_fats = 'Y'
and recyclable = 'Y';

 

근데 이걸 제출 헀더니

기동 시간 오류라는 거임... 처음에 mySQL로 되어있어서 혹시나 하고 Oracle 로 바꿔서 하니까 통과함

 

뭔가.... oracle에선 enum 타입 안써서 그런가 싶기도 하고 모르겠네

그리고 돌릴수록 빨라짐.. 타임 오류 나면 두번씩은 돌려봐야겠어요

728x90
반응형

'알고리즘' 카테고리의 다른 글

[SQL] 595. Big Countries (Easy)  (0) 2024.12.26
[SQL] 584. Find Customer Referee (Easy)  (0) 2024.12.26
[프로그래머스 lv2] H-Index.java  (0) 2022.05.06
[프로그래머스 lv3] 네트워크.py  (0) 2022.05.04
[백준 실버3] N과 M(2).py  (0) 2022.04.29