SELECT * FROM Header WHERE (userID LIKE [%\'%])
select * from Header where userID like '%''%'
Hope this helps.
That's:
SELECT * FROM Header WHERE (userID LIKE '%''%')
Double them to escape;
SELECT * FROM Header WHERE userID LIKE '%''%'