Skip to main content
Participating Frequently
June 8, 2006
Question

Create list from query

  • June 8, 2006
  • 1 reply
  • 337 views
Hello,

I have a query:
SELECT ID FROM TEST

I want the output to be like this: 1,3,4,6
How can i do that? What I'm trying is:
<cfoutput>#ID#,</cfoutput> which gets me 1,3,4,6, (I need to loss the last , )

Thanks!
    This topic has been closed for replies.

    1 reply

    Participating Frequently
    June 8, 2006
    I solved it with a valuelist.

    Thanks