From 3b7a871074cacc9cbb8ff1be47ddcf3e09262a99 Mon Sep 17 00:00:00 2001 From: Steve Mortimer Date: Fri, 4 Nov 2016 12:26:41 -0400 Subject: [PATCH] Changing Wording Change the wording on a sentence that has a difficult tense structure in order to help get the point across --- _includes/sqlstyle.guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_includes/sqlstyle.guide.md b/_includes/sqlstyle.guide.md index 71bd29c..6d0a3df 100644 --- a/_includes/sqlstyle.guide.md +++ b/_includes/sqlstyle.guide.md @@ -106,8 +106,8 @@ SELECT first_name in the object's name. * If there is already a correlation with the same name then append a number. * Always include the `AS` keyword—makes it easier to read as it is explicit. -* For computed data (`SUM()` or `AVG()`) use the name you would give it were it - a column defined in the schema. +* For computed columns (`SUM()` or `AVG()`) name the column the same as if it + was defined in the schema. ```sql SELECT first_name AS fn