1
0
Fork 0
mirror of https://github.com/treffynnon/sqlstyle.guide.git synced 2025-03-09 12:49:51 -05:00

Merge pull request #1 from kindkid/patch-1

Nitpick relationship table example
This commit is contained in:
Simon Holywell 2015-07-26 12:35:25 +01:00
commit a67f5fe8f1

View file

@ -90,7 +90,7 @@ SELECT first_name
notation.
* Never give a table the same name as one of its columns and vice versa.
* Avoid, where possible, concatenating two table names together to create the name
of a relationship table. Rather than `car_mechanic` prefer `service`.
of a relationship table. Rather than `cars_mechanics` prefer `services`.
### Columns