how to execute stored output to csv files

Solutions on MaxInterview for how to execute stored output to csv files by the best coders in the world

showing results for - "how to execute stored output to csv files"
Camila
29 Feb 2016
1create Proc ExportTest
2AS
3BEGIN
4SELECT * FROM EMPLOYEE
5
6-- I NEED TO EXPORT RESULT OF THIS SELECT STATEMENT TO THE .CSV FILE
7END