My table contains a supplier number and email address. I can
have multiple email addresses for each suppliernumber. I want to
group all the emails together into one string so cfmail can send to
the entire string instead of individually, so I try to use
valuelist to do this. Seems to work, but my question is how do I
separate each list by the supplier number ? I tried to use group by
in the queyr and it does not work.
So if supplier 1 has 3 records (email) and supplier 2 has 5
records (email), my oput should be two records only, for supplier 1
with eamail 1,2,3, etc. and supplier 2 with email 1, 2,3, 4, 5.
etc.
How can I do this ?