Skip to content

Commit 899b877

Browse files
authored
Update all-transact-sql.md
you need to double the ' otherwise you get this error , Execution failed due to an unexpected error: Error: SQL Execution error: A fatal error occurred. Incorrect syntax was encountered while PRINT 'At least one item for this order can't be manufactured in specified number of days.' ELSE PRINT 'All items for this order can be manufactured in the specified number of days or less.' ; was being parsed.
1 parent 11ab8a2 commit 899b877

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/t-sql/language-elements/all-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ IF
7878
)
7979
PRINT 'All items for this order can be manufactured in specified number of days or less.'
8080
ELSE
81-
PRINT 'Some items for this order can't be manufactured in specified number of days or less.' ;
81+
PRINT 'Some items for this order can''t be manufactured in specified number of days or less.' ;
8282
8383
```
8484

0 commit comments

Comments
 (0)