QueryColumnList

This function returns the delimited column list of a query.

Method Signature

QueryColumnList(query=[query])

Arguments

Argument
Type
Required
Description
Default

query

query

true

The query to get the column names from

Examples

Create a query and output the column list

Run Example

myQuery = queryNew( "ID,name,age" );
writeOutput( queryColumnList( myQuery ) );

Result: ID,name,age

Using a member function

Run Example

Result: ID,name,age

Additional Examples

Run Example

Last updated

Was this helpful?