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 trialSTEVEN AGUILAR
6,336 PointsWhat does the period mean or do in "SELECT Teachers. *"?
The instructor added a period and said "Oh that's cool that that worked" but didn't explain what it does.
1 Answer
Steven Parker
231,269 PointsThe period (or "dot") separates a table name from a column. In this case, the asterisk is used to mean "all columns". So "Teachers.*
" means "all columns in the table named Teachers".