Skip to content

Commit f1dd799

Browse files
authored
Merge pull request #18965 from julieMSFT/202010329_insert
update
2 parents 4af5f4e + 878b528 commit f1dd799

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

docs/t-sql/statements/insert-transact-sql.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,10 @@ VALUES (N'FT', N'Feet', '20080414');
442442
```
443443

444444
#### B. Inserting multiple rows of data
445-
The following example uses the [table value constructor](../../t-sql/queries/table-value-constructor-transact-sql.md) to insert three rows into the `Production.UnitMeasure` table in the [!INCLUDE[ssSampleDBnormal](../../includes/sssampledbnormal-md.md)] database in a single INSERT statement. Because values for all columns are supplied and are listed in the same order as the columns in the table, the column names do not have to be specified in the column list.
445+
The following example uses the [table value constructor](../../t-sql/queries/table-value-constructor-transact-sql.md) to insert three rows into the `Production.UnitMeasure` table in the [!INCLUDE[ssSampleDBnormal](../../includes/sssampledbnormal-md.md)] database in a single INSERT statement. Because values for all columns are supplied and are listed in the same order as the columns in the table, the column names do not have to be specified in the column list.
446+
447+
>[!NOTE]
448+
> The table vaule constructor is not supported in Azure Synapse Analytics.
446449

447450
```sql
448451
INSERT INTO Production.UnitMeasure

0 commit comments

Comments
 (0)