Hi there guys basically I have a query asking me to do this...
What is the lowest rated review in the database? List the review title, date of post, author username, category name, and rating.
I've written this..
SELECT * from reviews where rating like '%1%'
Is that right? As in it's not showing anything but I am unsure why. Please excuse me as I'm trying to learn to SQL
My reviews table..
http://gyazo.com/e48a0be08782af79b4fbf0fec5481eba
THANKS!!