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
myQuery = queryNew( "ID,name,age" );
writeOutput( queryColumnList( myQuery ) );
Result: ID,name,age
Using a member function
Result: ID,name,age
Additional Examples
Related
Last updated
Was this helpful?
