Upon using a text editor to review exported results from SSMS to CSV I'm witnessing extra double quotes around the result values - not field names. I've used the concat function in my script to manually add a single pair of double quotes around each value and field name. So where I would expect "012345678" I'm actually seeing """012345678""".
It may be that my code is a bit too rudimentary
ex.:
SELECT CONCAT('"',ISNULL('012345678',''),'"') AS '"employee_id"'
FROM employees
More fields are selected I just included one as an example.
Any direction is greatly appreciated.