• You could use an ESCAPE character.

    DECLARE @Table1 TABLE

    (

    Column1 VARCHAR(32) NOT NULL PRIMARY KEY

    );

    INSERT @Table1(Column1)

    VALUES

    ('abcdef123'),

    ('abcdef]123'),

    ('abcdef].123'),

    ('abcdef)123'),

    ('abcdef.123');

    SELECT T.Column1

    FROM @Table1 T

    WHERE T.Column1 LIKE '%\]123%' ESCAPE '\'

    OR T.Column1 LIKE '%.123%';

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2