Dear All,
I have a table named SchoolEast which has data in the following format;
SchoolNo Notes Date
1000 Visited 01/09/06
1021 Not interested 10/06/06
1021 Now interested 11/06/06
1000 Spoke to teacher 10/07/06
1000 not interested 10/09/06
I want to write a query that will concatenate the notes per school number seperated by a "-".
E.g the table would now be;
SchoolNo Notes
1000 Not interested - Visited - Spoke to teacher
1021 Now interested - Not interested
The notes would need to be ordered Newest first to oldest.
Is this possible?
Thanks
I have a table named SchoolEast which has data in the following format;
SchoolNo Notes Date
1000 Visited 01/09/06
1021 Not interested 10/06/06
1021 Now interested 11/06/06
1000 Spoke to teacher 10/07/06
1000 not interested 10/09/06
I want to write a query that will concatenate the notes per school number seperated by a "-".
E.g the table would now be;
SchoolNo Notes
1000 Not interested - Visited - Spoke to teacher
1021 Now interested - Not interested
The notes would need to be ordered Newest first to oldest.
Is this possible?
Thanks