The below program will do so
declare @tbl table(SomeField varchar(50))
insert into @tbl(SomeField) values(concat('He is one of the leader','''s',' of this world'))
select * from @tbl
Result
--------
/*
SomeField
------------
He is one of the leader's of this world
*/
By using the concat function , we are concateting the string literals.