Remove column header from SQL Server query result
问题 I want to remove column header from SQL Server query output. I did the search but not found any solution. I have a query eg. select cc.DepartmentID , cc.Name from HumanResources.Department cc When I run this query I am getting output like this. ID Name 12 Document Control 1 Engineering 16 Executive 14 Facilities and Maintenance 10 Finance 9 Human Resources I want to remove ID and Name (Column Header) from the output in SQL Server. I will run this query by script to generate csv file. Edit: