Hello how do I export the data from sas, with special column names to CSV file.
for example see the column names:
PROC SQL; CREATE TABLE test2 AS SELECT name as 'first. (name)'n, city as 'some. (city)'n
FROM test ; QUIT;
I want the column names in csv as: column1: first. (name) column2: some. (city)
I can use proc step or data step to export based on your suggestions.
Thanks