QuotedValueList (query.column [, delimiter]) DescriptionGets 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> |