SQL

leetcode 1757. Recyclable and Low Fat Products

무적김두칠 2022. 3. 29. 15:41

1
2
3
4
5
6
/* Write your PL/SQL query statement below */
select p.product_id
from products p
where 1=1 
and p.low_fats='Y'
and p.recyclable='Y'
cs
반응형