Skip to content

Commit b548c73

Browse files
minor formatting fixes - extra spaces removed
1 parent c6b1beb commit b548c73

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/t-sql/queries/select-clause-transact-sql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ SELECT [ ALL | DISTINCT ]
7171

7272
For backward compatibility, using the TOP *expression* without parentheses in SELECT statements is supported, but we do not recommend it. For more information, see [TOP (Transact-SQL)](../../t-sql/queries/top-transact-sql.md).
7373

74-
\< select_list >
74+
\<select_list>
7575
The columns to be selected for the result set. The select list is a series of expressions separated by commas. The maximum number of expressions that can be specified in the select list is 4096.
7676

7777
\*
@@ -128,7 +128,7 @@ SELECT Location.Distance (@p)
128128
FROM Cities;
129129
```
130130

131-
*column_ alias*
131+
*column_alias*
132132
Is an alternative name to replace the column name in the query result set. For example, an alias such as Quantity, or Quantity to Date, or Qty can be specified for a column named quantity.
133133

134134
Aliases are used also to specify names for the results of expressions, for example:

0 commit comments

Comments
 (0)