Could someone please review and help on these questions?
- pull columns A, B, C, D, E
- search for X and Y from columns A - E
- combine multiple tables (Table 1, 2, and 3)
- and group the results however you see fit (column H)
My attempts are
- SELECT A, B, C, D, E FROM (table name) ;
- SELECT A, B, C, D, E FROM (table name)
WHERE name = X AND Y ; -> I’m lost here - SELECT * FROM 1
JOIN 2 AND 3 ON ; - SELECT * FROM 1
JOIN 2 AND 3 ON
GROUP BY H;
Thank you!