Skip to content

Commit b7bea1f

Browse files
1 parent b7618a2 commit b7bea1f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ WHERE StandardCost > 1000.00;
242242
GO
243243
```
244244

245-
The following example shows a more complex WHERE clause. The WHERE clause defines two conditions that must be met to determine the rows to delete. The value in the `StandardCost` column must be between `12.00` and `14.00` and the value in the column `SellEndDate` must be null. The example also prints the value from the **@@ROWCOUNT** function to return the number of deleted rows.
245+
The following example shows a more complex WHERE clause. The WHERE clause defines two conditions that must be met to determine the rows to delete. The value in the `StandardCost` column must be between `12.00` and `14.00` and the value in the column `SellEndDate` must be null. The example also prints the value from the **\@\@ROWCOUNT** function to return the number of deleted rows.
246246

247247
```sql
248248
DELETE Production.ProductCostHistory

0 commit comments

Comments
 (0)