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

Update sqlstyle.guide.md

This commit is contained in:
Chris Johnson 2015-07-24 15:48:42 -05:00
parent 2491d3be4a
commit 92884bb349

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