Which of the following statements will display the name of all customers who have purchased a copy of e-business the easy way? 1) SELECT name FROM customers WHERE product = 'e-business the easy way' 2) SELECT name FROM customers WHERE purchase = 'e-business the easy way' 3) SELECT name FROM customers WHERE product = 'e-business the easy way' AND purchase = 'yes' 4) SELECT name FROM customers WHERE product = 'e-business the easy way' AND purchase = 'no'