I have the following query:
select * from cars where make in (\'BMW\', \'Toyota\', \'Nissan\')
What I want to do is store the where param
why not?
SELECT * FROM cars WHERE make IN (SELECT DISTINCT(make) FROM carsforsale)