vote up 0 vote down star

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
...
flag
1  
Can you please provide the following info: 1. Access table structure 2. What tools are you comfortable using (I understand you have MS Access, but can you also use ASP.Net? Is this where the notion of a GridView came from?) – Eugene Jul 7 at 21:30
Here it is, drawn in Paint for easier comprehension: img195.imageshack.us/img195/7352/… I'm doing this in ASP.NET. I want to accomplish this either by using SQL (multiple queries) or somehow in GridView in ASP.NET. – dotnetasp35 Jul 7 at 21:39
Do you want the 5, 1, and 3 in separate columns or do you want to build a comma delimited list with sql? – Joel Coehoorn Jul 7 at 21:42
No, not separate column. All in one column. I don't have to be comma separated, spaces are good too. Basically all I want it to extract grades from the same subject and put them all together in one field. – dotnetasp35 Jul 7 at 21:46
What do you by "you people"? – Chris Porter Jul 7 at 22:17

7 Answers

vote up 0 vote down

That was before I registered here. I used to ask questions unregistered, now I got my OpenID with the same username and now that account doesn't work. I can't login back as donetasp35 as unregistered profile because it won't accept me. I used that account to ask the question and I registered in the meanwhile. I apologize for this. I'll try to work something out to give you credit but if I don't, I'm really sorry.

EDIT: I need 15 reputation to vote so I can always come back here and give you a vote. Also, I'm sorry to waste everybody's time with this. I didn't know I can't call VBA modules from outside such as ASP.NET environment so I can't use Russ's solution. Thank you all for your help.

link|flag
You can use the C# solution that I linked to in my answer. It requires a knowledge of generics and delegates to udnerstand, but it's pretty strightforward to use/modify – Russ Cam Jul 8 at 10:30
I'm sorry for being stupid but I can't find it. Do you mean that link to Stackoverflow question you posted? – dotnetasp35 Jul 8 at 10:36
yes - there are a number of answers there that would fit your needs. The accepted answer, with a little modification would effectively operate in a similar fashion to the VBA function. You would need return your results from Access and load them into an Enumerable collection, then iterate over that collection to return a concatenated string of the values in one field for each distinct value in another field i.e. grades for the former for each distinct subject – Russ Cam Jul 8 at 14:47
Thank you very much for your help! – dotnetasp35 Jul 8 at 23:37
vote up 0 vote down

I want to but I can't. I don't see any checkmarks and I'm not allowed to vote due to low points.

link|flag
You have accepted other answers on the profile used to ask the question - stackoverflow.com/users/132421/dotnetasp35. Use this profile to mark an answer as accepted. – Russ Cam Jul 8 at 8:01
vote up 0 vote down

Thank you very much Russ Cam! That's exactly what I need. I'm having some trouble executing the query. I keep getting error "3061 - too few parameters, expected 1" but I'll get around it. Thank you!

link|flag
If Russ Cam answered your question then you should "accept" his answer by clicking the little check mark. This will let others know which response to your question was the most helpful and it will give Russ Cam credit for his hard work helping you out! – wweicker Jul 7 at 23:33
vote up 2 vote down

I believe you are looking for something like this -

Join collection of objects into comma-separated string

I would be inclined to pull the data back as you have done in you GROUP BY in the question, and then concatenate the number values for each subject in you asp.net code.

Or you could write a VBA function to use in Access to do it. One has already been written by Allen Browne here. You just need to add the code to a module within Access and then you can use that function within SQL queries within Access.

Given this table structure

subjects table 

id  |  SubjectName  |    Grade
---------------------------------
1      MATH	           5
2      ENGLISH         3
3      ENGLISH         2
4      PHYSICS         5
5      MATH	           1
6      MATH	           3

The following SQL with the VBA function

SELECT 
    subjects.SubjectName + ' ' + 
    ConcatRelated("Grade","subjects","SubjectName='" & SubjectName & "'") AS result
FROM 
    subjects
GROUP BY
    subjects.SubjectName

yields the following result

result
------------
ENGLISH 3, 2
MATH 5, 1, 3
PHYSICS 5

if you want to get the order that you have specified in your question, you will need another field/expression on which to do the ordering

link|flag
How does one execute an Access VBA function from ASP.NET? – David W. Fenton Jul 8 at 2:04
You can't execute an Access VBA function from .NET as the ADO.NET command is executed against the JET db that does not have access to any user defined VBA functions within Access. The only functions that you can use in a SQL command are here - support.microsoft.com/default.aspx?scid=kb;en-us;… under the section "Use Sandbox mode operations with Jet 4.0 Service Pack 3 and later." As recommended, if the OP needs the end result in ASP.NET, I would have a method in the server-side code to do the concatenation on the returned resultset the OP has defined in the question. – Russ Cam Jul 8 at 7:59
vote up 0 vote down

A very interesting way to handle this if Microsoft SQL Server is an option is to use a Common Table Expression query. Using a CTE would allow you to concatenate your grade column into a single cell by class. Simple-Talk has a very nice walkthrough that explains different approaches to SQL contacenation and gives examples of using CTEs (look for the WITH statements).

If you don't have Microsoft SQL Server, download Microsoft SQL Server 2008 Express .

link|flag
vote up 0 vote down

Thank you for your answer but that's too advanced for me. I didn't get that at all. Is there a simpler solution to this? I can dismiss the Access database and try something else if it's going to work.

link|flag
If that sounds complicated for you, then you might want to look at the off-the-shelve products that will serve your needs. – Eugene Jul 7 at 22:24
vote up 0 vote down

If I had MS Access and ASP.Net to solve this task, I'd take the route of nested repeaters.

So I'd make two calls to the database, first call to get the distinct categories (in your case -- IDSUBJECTS), the second call is to get all the GRADE fields for all the IDSUBJECTS. If you are doing it by the Username, then I would add Username into each of those calls.

Then I'd tie up the one repeater to the distinct IDSUBJECTS, put a Literal control and a repeater into the itemtemplate. Then I'd get the text from the literal control and a reference to the inner repeater in the Repeater_ItemDataBound event and filter the second table based on the IDSUBJECT in the outer repeater. In the inner repeater, iterate over the filtered data and display in the way you want.

Not the easiest solution, but it can work.

If you have a SQL Server (you can download Microsoft SQL Server Express for free), you may want to look into the PIVOT function.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.