This utility converts a series of values to comma delimited values with single quotes around each value
You have a list, be it a short list or a long list, and you need to turn it into a SQL 'in' statement
Purell, Walter, Greer, Conrad
You can convert it to
Select * from Contacts where CompanyName in ( 'Purell', 'Walter', 'Greer', 'Conrad' )
With this utility you can easily generate enclosed values delimited by comma. You can directly paste this list into your SQL IN Clause
SELECT Id, CompanyName, City, Country FROM Supplier WHERE Country IN ('USA', 'UK', 'Japan')
SQL.info tools makes you faster and super awesome at your job. Remember to Bookmark this page now. And checkout our other awesome data tools