How do I concatenate notes entries by the same reviewer

G

Guest

I have a table ContactDetails. Below are the fields I need to work with.
ID,REVIEWER, SEQ_NO, NOTES

The result I am looking for is:
1 | Steve | notes entry 1; notes entry 2; notes entry 3 ...etc

In MySQL I can acheive this by:
SELECT
ID, REVIEWER, SEQ_NO, GROUP_CONCAT(DISTINCT NOTES SEPARATOR ',')
FROM ContactDetails
GROUP BY ID

Question:
Can I do something like this in Access 2003?
 
G

Guest

I am getting this error when I visited the site.

ADODB.Recordset error '800a0bb9'

Arguments are of the wrong type, are out of acceptable range, or are in
conflict with one another.

/Otherdownload.asp, line 32


Thanks,
Steve
 
G

Guest

Tried a different computer and still received error. Also tried to use
FireFox to see if it will work, still resulted in an error.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top