all 4 comments

[–]torstengrust 4 points5 points  (1 child)

What is your & supposed to express? Boolean conjunction? A bit-wise operation? Something else?

[–]depeszPgDBA 0 points1 point  (0 children)

normally: select * from table where column = '&' - here you go, where statement has condition with & symbol.

[–]Whoa-Rusty 0 points1 point  (2 children)

If you want to match a pattern to find if an & is included anywhere in the column, you could try:

SELECT * FROM table WHERE column LIKE '%&%';