Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit decb8c2

Browse files
author
MightyPen
committed
Tweaks to UNION article.
1 parent 9c6772f commit decb8c2

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

docs/t-sql/language-elements/set-operators-union-transact-sql.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,23 +25,23 @@ monikerRange: ">=aps-pdw-2016||=azuresqldb-current||=azure-sqldw-latest||>=sql-s
2525

2626
[!INCLUDE[tsql-appliesto-ss2008-all-md](../../includes/tsql-appliesto-ss2008-all-md.md)]
2727

28-
Combines the results of two queries into a single result set. You control whether the result set includes duplicate rows:
28+
Concatenates the results of two queries into a single result set. You control whether the result set includes duplicate rows:
2929

3030
- **UNION ALL** - Includes duplicates.
3131
- **UNION** - Excludes duplicates.
3232

33-
A UNION operation is different from a JOIN:
33+
A **UNION** operation is different from a **[JOIN](../queries/from-transact-sql.md)**:
3434

35-
- A UNION combines result sets from two queries. But a UNION does not create individual rows from columns gathered from two tables.
36-
- A JOIN compares columns from two tables, to create rows composed of columns from two tables.
35+
- A **UNION** concatenates result sets from two queries. But a **UNION** does not create individual rows from columns gathered from two tables.
36+
- A **JOIN** compares columns from two tables, to create result rows composed of columns from two tables.
3737

38-
The following are basic rules for combining the result sets of two queries by using UNION:
38+
The following are basic rules for combining the result sets of two queries by using **UNION**:
3939

4040
- The number and the order of the columns must be the same in all queries.
4141

4242
- The data types must be compatible.
4343

44-
![Topic link icon](../../database-engine/configure-windows/media/topic-link.gif "Topic link icon") [Transact-SQL Syntax Conventions](../../t-sql/language-elements/transact-sql-syntax-conventions-transact-sql.md)
44+
![Topic link icon](../../database-engine/configure-windows/media/topic-link.gif "Topic link icon") [Transact-SQL Syntax Conventions](transact-sql-syntax-conventions-transact-sql.md)
4545

4646
## Syntax
4747

0 commit comments

Comments
 (0)