Advertisement
Pandaaaa906

Untitled

Jan 13th, 2023
1,203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. SELECT
  2.     platform,vendor,brand,count(*)
  3. FROM
  4.     "public"."rawsupplierquotation"
  5. WHERE
  6.     "create_date" IS NOT NULL
  7.     AND "price" IS NULL
  8.    
  9. GROUP BY platform,vendor,brand
  10. ORDER BY
  11.     count(*) desc
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement