views:

342

answers:

1

I need to escape quotation marks in SQL Server Integration Services' Expression Builder. I cannot escape it with double or triple quotes.

+1  A: 

Backslash "\" is the escape character.

Example: "SELECT branch, \"tran-date\" FROM TellerTransaction"

M. Travis Volker