I need to find by sequence which contains symbols [] like !@#$%^&[]{}<>?/,.*(^ with a like expression in SQL Server 2014.
How I can escape brackets to find records which contains target string?
Example
SELECT *
FROM [TARGET_TABLE]
WHERE [TARGET COLUMN] LIKE '%"!@#$^&[]{}<>?/,.*(^"%';
[TARGET TABLE] has a row with [TARGET COLUMN] which value is
some text "!@#$^&[]{}<>?/,.*(^"
but result of expression is empty.
I know what [] is wildcard, but don't know how escape brackets to find strings with them.