Jump to content

GROUP BY


Guest Xander

Recommended Posts

Hi I'm desperatly trying to get an GROUP BY statement work on a SQL callto an Access DB.I am making a menu on my site: www.graphic.no/def.aspWhen clicking on the top menu a sub menu is generated succesfullyin the left frame.When I click on the submenu I want anotger subtopic to emerge inside the submenu.This works fin except when I try to GROUP the subsub items.THIS WORKS:SELECT SubKategori, TutKategori, TutTittel FROM Tutorials WHERE SubKategori='Photoshop' AND Vis = 'True'BUT THIS:SELECT SubKategori, TutKategori, TutTittel FROM Tutorials WHERE SubKategori='Photoshop' AND Vis = 'True' GROUP BY TutKategoriMakes the server halt, and all I get is SERVICE UNAVAILABLEWHAT in the ***** am I doing wrong here ??Please advice

Link to comment
Share on other sites

Hi Xander,What exactly are you trying to do with your query? What type of values contain your columns?If you want to use the GROUP BY clause, your selected columns (SubKategori, TutKategori, TutTittel) need to be part of an aggregate function (like SUM, COUNT,...). More info here...Cheers,Jerome

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...