I am essentially wanting to join the Region table to the Entry table if the column Entry.Category contains Region.Region_Name.
The code I am using is as follows:
select Entry.Category, REGION.REGION_NAME from Entry join REGION on Entry.Category like ('%' + REGION.REGION_NAME + '%')
Any help would be very appreciated!