I need to insert some xml into a SQL table column that looks like this:
<date format="ddd MMM dd HH:mm:ss \"UTC\" yyyy" />
SQL complains it is expecting whitespace after the double quote before the U.
INSERT INTO foo
(date)
VALUES ('<date format="ddd MMM dd HH:mm:ss \"UTC\" yyyy" />')
I've tried doubling the double quotes and the backslashes, but I get the same error.