Reporting : Native reporting system : How to edit or add a report : How to edit an existing report : Printing one or more columns
  
Printing one or more columns
The way the select command is used in the report syntax controls whether or not your report has one or more columns. Each iteration of the SELECT command produces a new line in the report.
Use multiple SELECT commands to print columns side-by-side and separate by a comma on the same line as the command which produces a report with the number of columns equal to the number of SELECT command used.
For three report columns
SELECT Name, Type, Class
For one report column
SELECT Name
SELECT Type
SELECT Class
Related topics
Examples – SELECT command
Rules for using the SELECT command
Select column header and placement
Select column header appearance
Select column header name
SELECT command structure
Parent topic
Printing one or more columns