What is the SQL to search an entire table for a specific string and return those records that have that string in it. For example I want to search the table "test" for "~". Here is the psuedo code.
select *
from test
where any character = ~
Thanks,
Josh
select *
from test
where any character = ~
Thanks,
Josh