Get data from table from list of rows in MySQL
2 answers
I assume you want the MySQL IN clause :
SELECT ID, Name FROM TableName WHERE Name IN ('Big','Small','Extra')
+3
a source to share