Collision in SQL Select-statement between special escape characters (bracket and backslash) and bracket in column name with quotation marks around it
I'm running into a problem with an SQL Select-statement using column names that are including brackets, because the end brackets of the column names end up next to backslashes (due to using quotation marks within quotation marks: " \!" column name [ units ] \!" " ) and this interferes with the surrounding special escape characters (bracket and backslash: \[ ]\ ). The SQL-statement is written betwe...