I need to escape quotation marks in SQL Server Integration Services' Expression Builder. I cannot escape it with double or triple quotes.
我需要在SQL Server Integration Services的表达式构建器中转义引号。我不能用双引号或三引号来回避它。
1 个解决方案
#1
20
Backslash "\" is the escape character.
反斜杠“\”是转义字符。
Example: "SELECT branch, \"tran-date\" FROM TellerTransaction"
示例:“选择branch, \”trandate \“来自TellerTransaction”
#1
20
Backslash "\" is the escape character.
反斜杠“\”是转义字符。
Example: "SELECT branch, \"tran-date\" FROM TellerTransaction"
示例:“选择branch, \”trandate \“来自TellerTransaction”