I have the following table
Events:
EVENT_ID EVENT_OWNER_ID EVENT_NAME EVENT_DATE EVENT_PRIVATE EVENT_ACTIVE
All fields except EVENT_NAME are either date, int or bit.
Is it more efficient to have another table to match between the EVENT_ID and the EVENT_NAME and when I need I will just use JOIN to see the event name? or is the JOIN less efficient than just having one table with the EVENT_NAME as I currently have?