Say I have a table titles like this:
id (INT) | title (VARCHAR)
-----------------------------
1 | Some title
2 | Another title
3 | Yep another
I accidentally discovered if I use the query:
SELECT * FROM `titles` WHERE `id` = '1,2,3'
Mysql returns me the row with id = 1
Maybe I missed this whilst learning about Mysql. Is this something that's been supported across many version of Mysql?