Use Replace function with double the no of quotes.
select top 1 Field_Name from [mytable]
Field'sWithSingleQuote
Now
select top 1 replace (Field_Name,'''','') from [mytable]
or using ASCII Code of '
select top 1 replace (Field_Name,char(39),'') from [mytable]
FieldsWithSingleQuote