Joining Tables using a Like statement
-- This SQL code allows you to join a table to another table by finding columns that contain another column's information
-- (instead of where the columns are equal)
-- (instead of where the columns are equal)
SELECT * FROM Table1 INNER JOIN Table2 ON Table1.col LIKE '%' + Table2.col + '%'