DateName Query

  • I am using the function in a Query: ORDER BY DateName (Month, ChargeDate).

    I am trying to do one query with three columns: DateNumber (i.e. December would be number 12, etc.), DateName, and Total (the total comes from the SUM of some other items using WHERE statements).

    I can create a single table with the DateNumber and Total columns, but when I try to add the DateName column, I get an error. The error says that the SELECT statement is invalid because the DateName is not contained in either an aggregate function or the GROUP BY statement. I can create a table with ONLY the DateName column and it works correctly...now if only I could combine these two queries. I even tried making the GROUP BY and ORDER BY statements the same DateName (Month, CHargeDate), but I still got the same error as before.

    I either need a resource that gives examples of an entire Query (as opposed to just the ORDER BY DateName statement), also maybe one that would be useful in future situations, or maybe someone knows what I am talking about and can tell me why I might be getting that error.

  • in the ORDER BY section of a statement, you can refer to data by the alias that was assigned to it, isntead of the function. will that help you out?

    ie SELECT MAX(something) as ThatThing,DateName (Month, ChargeDate) As DaDate

    From Some Table

    group by SomeKey

    Order By ThatThing,DaDate

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply