Advertisement
korenizla

тема 3 урок 5 задача 5

Jan 12th, 2023
891
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. SELECT support_rep_id,
  2.        COUNT(customer_id)
  3. FROM client
  4. WHERE email LIKE '%yahoo%'
  5.         AND email LIKE '%gmail%'
  6. GROUP BY support_rep_id;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement