From 92884bb349a265d62e9a0e6f6215e7c5dfb30116 Mon Sep 17 00:00:00 2001 From: Chris Johnson Date: Fri, 24 Jul 2015 15:48:42 -0500 Subject: [PATCH] Update sqlstyle.guide.md --- _includes/sqlstyle.guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/sqlstyle.guide.md b/_includes/sqlstyle.guide.md index 996b453..989553f 100644 --- a/_includes/sqlstyle.guide.md +++ b/_includes/sqlstyle.guide.md @@ -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