Hi guys can you please take a look at this

Below is my sample script
Code:
DECLARE @sku nvarchar(100)
SELECt @sku = sku from ac_orderItems  where orderID = 12 and orderItemTypeID = 0
Print @sku
Then when i print @sku it give me a result of SampleB
but i want to produced an output of 'SampleB' enclosed in a single quote.

Thanks