Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialAdiv Abramson
6,919 PointsWhy use an alias for genres.name? Isn't using a keyword as a column name bad practice?
Instead, why not assign the "name" column in the genres table a more descriptive title like "genre" or "genre_name"?
1 Answer
Iain Simmons
Treehouse Moderator 32,305 Pointsname
doesn't seem to actually be a reserved word. names
is in some SQL languages.
https://www.petefreitag.com/tools/sql_reserved_words_checker/?word=name https://www.petefreitag.com/tools/sql_reserved_words_checker/?word=names
But since it's aliased as genre_name, that seems sufficient.
It probably would be best to make things more descriptive to avoid any conflicts though. I know that it's common to do that for ID fields, instead of having a field in every table called id
.