declare @tbl table(SomeField varchar(50))insert into @tbl(SomeField) values('He is one of the leader''s')select * from @tbl
SomeField He is one of the leader's
Login to post response