I have a table like this
name group id
john employee 1
joe intern i1
smith intern i2
i’m wondering if there is a sql technique that will allow me to group the rows with the same group type to have something like following :
name group id
john employee 1
joe, smith intern i1,i2
i’m looking for a query/solution in pure sql, no proprietary sql (e.g sql server, oracle…)
I’m no sql guru, so pardon my ignorance.
To do that in FoxPro, you have to combine SQL code with Xbase code. There’s no SQL-only solution.