I have a mysql table that's pretty simple & small.
award_id bigint(11) primary key auto_inc
award_receip varchar(160) NULL
date_receip DATETIME NOT NULL
When I make the following query, I don't get the expected results.
SELECT * FROM awards WHERE award_id REGEXP '("1|6|3")'
Only award_id 6 is in the result set.
The primary keys are all consecutive into the thousands.
What's the error in my pattern that prevents award id 1 & award id 3 from being displayed in the results ?
Thanks !!