SELECT * FROM cars WHERE carBrand LIKE '%alfa%' OR carModel LIKE '%alfa%'
Everything i put after that sentence just gets ignored. I was hoping to be able to do this.
SELECT * FROM cars
WHERE carBrand LIKE '%alfa%'
OR carModel LIKE '%alfa%' AND carType = 'truck'
This just gets ignored.
AND carType = 'truck'
Why?