I need to extract data from about a dozen tables to pipe-delimited files. Some of these have 70-80 fields in them. I want to extract all fields from the selected records. Is there an easier way to insert the delimiters other than
Code:
Select field1, '|', field2, '|', .... field75 from table1
where status = 'E'