leetcode

Leetcode submissions
git clone git://git.laack.co/leetcode.git
Log | Files | Refs | README

recyclable-and-low-fat.sql (169B)


      1 --Given a list of products return
      2 --all products that are recyclable
      3 --and low fat.
      4 
      5 SELECT Products.product_id
      6 FROM Products
      7 WHERE low_fats = 'Y' 
      8 AND recyclable = 'Y'