I have a table (stations) containing TV station names that are then used via FK in other tables. I was wondering if there is a convention or preferred way to name its columns.
Option A: id, name
Option B: id, station
Pro A: It is very descriptive in the full context (stations.name)
Pro B: makes it more descriptive when used without the table prefix (station vs name).