Inside Coldfusion MX
QuotedValueList (query.column [, delimiter]) Description
Gets the values of each record returned from an executed query. Example
<cfquery name="exampleQuery" datasource="exampleDSN"> SELECT Name, Email, Company From Contacts </cfquery> <cfoutput> The companies that are currently in my database are: #QuotedValueList(exampleQuery.Company)# </cfoutput> |