From af6eaa584fec7936971b9dd7765d6a051578145b Mon Sep 17 00:00:00 2001 From: DanielAagaard <42737491+DanielAagaard@users.noreply.github.com> Date: Thu, 17 Jan 2019 05:09:15 +0100 Subject: [PATCH] Updated spelling (#26998) Updated spelling and punctuations for easy readability --- guide/english/sql/sql-aliases/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guide/english/sql/sql-aliases/index.md b/guide/english/sql/sql-aliases/index.md index a0c3bf8c33..38a6acb149 100644 --- a/guide/english/sql/sql-aliases/index.md +++ b/guide/english/sql/sql-aliases/index.md @@ -6,7 +6,7 @@ title: SQL Aliases ## Using AS to assign meaningful or simpler names -You can use AS to assign a name to a column of data you are selecting or that has been calculated. +You can use "AS" to assign a name to a column of data you are selecting or that has been calculated. ```sql @@ -14,7 +14,7 @@ SELECT user_only_num1 AS AgeOfServer, (user_only_num1 - warranty_period) AS NonW ``` -This results in output as below. +This results in output below. ```text @@ -33,7 +33,7 @@ This results in output as below. +-------------+------------------------+ ``` -You can also use AS to assign a name to a table to make it easier to reference in joins. +You can also use "AS" to assign a name to a table to make it easier to reference in joins. ```sql SELECT ord.product, ord.ord_number, ord.price, cust.cust_name, cust.cust_number FROM customer_table AS cust