Converts tab-separated text into SQL table. For instance, you can copy a table from Excel or SSMS and paste it here. (more)
Input:
JOBNUMBER ENTRYNUMBER 10000-1 1 10000-1 2
Will be converted to:
SELECT * FROM (VALUES ('10000-1', 1), ('10000-1', 2) ) AS _ (JOBNUMBER, ENTRYNUMBER)