You can get the required result by joining two tables dbo.Events and dbo.EventsLocation using the Location ID as a basis for joining, using the following SQL query:
SELECT e.EventName, el.LocationName
FROM Events e
JOIN EventsLocation el ON e.Location = el.Location;