S
Steve C.
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?
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?