This error first occurred in a php function, but after a while of troubleshooting I am getting same results in phpmyadmin.
I have a simple SQL statement
SELECT * FROM tbl_movie WHERE title= "movie"
And I get nothing returned, I am copying and pasting (also tried typing it in) from the table. So there should be a match. Tried this with a many values that should work, same result (0 rows returned).
Oddly enough SELECT * FROM tbl_movie WHERE title LIKE "%movie%". Returned the desired row.
What is going on here?
Edit: I have tried everything I can think of to weed out the possibility of spaces messing it up. Sae results with: spaces on each/both sides, items with/without spaces.