So it is adding quotes only for string data. If quotes are needed for integer or blanks, nulls as well - you can try casting all the columns to string like SELECT cast(col1 as nvarchar(100) ...
Please don't forget to Accept Answer and Up-vote if the response helped -- Vaibhav