MySQL Forums
Forum List  »  PHP

serialise query?
Posted by: Maik Kerner
Date: August 17, 2005 11:13PM

Is it possible to serialise results of query?

Example:

table1:

Number;ClientID;DateBeginn;DateEnd;Data
1;1;20050101;20050102;A
2;1;20050102;20050104;B
3;1;20050104;20050105;C

table2:

ClientID;Name;Surname;
1;Test;Test

I want to get the client data with each entry in data seperated with a coma.

Output:

ClientID;Name;Surename;Data
1;Test;Test;A,B,C

Is this possible? Do you have an example?

Options: ReplyQuote


Subject
Written By
Posted
serialise query?
August 17, 2005 11:13PM
August 18, 2005 03:10PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.