From fb7a551fb98866d9ecefd7e3c597a91078950c1c Mon Sep 17 00:00:00 2001 From: e3klund <35581702+e3klund@users.noreply.github.com> Date: Fri, 18 Jan 2019 18:48:46 -0500 Subject: [PATCH] Update index.md (#27404) grammatical fix on line 32 --- guide/english/sql/sql-and-operator/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/sql/sql-and-operator/index.md b/guide/english/sql/sql-and-operator/index.md index 47d7fc0060..59d0ccdf8f 100644 --- a/guide/english/sql/sql-and-operator/index.md +++ b/guide/english/sql/sql-and-operator/index.md @@ -29,7 +29,7 @@ and sat_score > 800; ![image-1](https://github.com/SteveChevalier/guide-images/blob/master/and_operator03.JPG?raw=true) -This is a more complex example from the campaign contributions table. This example has a GROUP BY clause with HAVING clause using an AND to restrict the returned records to candidates from 2016 with contributions between $3 Million and $18 Million in total. +This is a more complex example from the campaign contributions table. This example has a GROUP BY clause with a HAVING clause using an AND to restrict the returned records to candidates from 2016 with contributions between $3 Million and $18 Million in total. ```sql select Candidate, Office_Sought, Election_Year, FORMAT(sum(Total_$),2) from combined_party_data where Office_Sought = 'PRESIDENT / VICE PRESIDENT'