Get data from table from a list of strings on MySQL
mysql, string
Solution
I assume you want the MySQL IN clause:
SELECT ID, Name FROM TableName WHERE Name IN ('Big','Small','Extra')
Problem
How can I query data from a table available on a list of strings? I only want to get the data from the list of strings. ``` Example: Table ID Name 1 Big 2 Small 3 Extra 4 Orange 5 Drink List of Strings: Big Small Extra ``` Thanks!