As the title says im trying to do a select statement in my database to find data that begins and ends with square brackets i.e. [Unchecked]
I've tried the following select query with like but it doesn't seem to be correct...
SELECT * FROM [DB_Table] WHERE [DB_Column] LIKE '[%'
This doesn't seem to get any of the data that starts with [
. although if i change the [
to a letter such as A it gets all the data beginning with A.
is it possible to do Like '[%'
(beginning with) and '%]'
(and ending with)?
This link How can I escape square brackets in a LIKE clause? is not a duplicate of mine it is completely different.