Hi,
sorry to bother you people again. I've searched all over the internet but I can't find the solution to my problem. I have two tables in Access and the output is like this:
MATH 5 ENGLISH 3 ENGLISH 2 PHYSICS 5 MATH 1 MATH 3
I want it to be:
MATH 5, 1, 3 ENGLISH 3, 2 PHYSICS 5
How can I accomplish this? It tried playing with SQL commands in Access database but nothing works. I also looked for solution using the GridView in ASP.NET but no luck either. Is there a way to acomplish this or should I take a different approach?
Best I can do is GROUP BY so the output looks like this:
MATH 5 MATH 3 MATH 1 PHYSICS 3 PHYSICS 1 ...