Search Result

Collapse
5 results in 0.0041 seconds.
Keywords
Members
Tags
aggregate
  •  

  • NeoPa
    started a topic Aggregate Query Woes

    Aggregate Query Woes

    Introduction :

    How many times have you come across the following error message when working within Aggregate, or Sum, queries?


    What is this message relating to and how can one avoid it?

    Aggregate (Sum) Functions :

    These are the standard functions available to Jet SQL. I can't say no others can exist, nor that they may not be introduced later into Jet SQL itself, but these are currently...
    See more | Go to post
    Last edited by NeoPa; Apr 7 '19, 03:48 PM. Reason: makes --> make in last paragraph.

  • relation between access specifiers and using initializer lists for POD types in c++0x

    take two following classes:

    Code:
    class Test1{
     public:
      Test1()=default;
      Test1(char in1,char in2):char1(in1),char2(in2){}
      char char1;
      char char2;
    };
    class Test2{
     public:
      Test2()=default;
      Test2(char in1,char in2):char1(in1),char2(in2){}
     private:
      char char1;
      char char2;
    };
    I know in c++0x both of these classes...
    See more | Go to post

  • p309444
    started a topic Get the id of the next closest location

    Get the id of the next closest location

    Hi.

    I have an application in which the user can select a location and view it's distance from several Points Of Interests (POIs).

    When I retrieve these distances, I would also like to retrieve the ID's of the locations that are the next closest and the next furthest away from each POI. eg. If we have 10 locations, each of them a mile further away from a certain POI the I would like to return: The name of the POI, The...
    See more | Go to post

  • Getting Syntax Error whilst applying Totals in Query

    I am receiving the following error when attempting to run my query. In my mind - this error should not be happening - its a straight-forward query with a subquery. I am using Access 2003 with all the latest patches.



    If I do not group the query (ie. remove aggregation) it will work. If I recall, it also works if my subquery does not have joins.

    I want to accomplish this with pure SQL .. I could easily...
    See more | Go to post

  • Tomerz
    started a topic problem with joins and aggregate functions

    problem with joins and aggregate functions

    Hi all, and thanks ahead to the helpers.
    for several hours im trying to overcome on an error im stuck with..
    that's the issue:
    i have 3 table:
    1. Recipes
    2. RegisteredUsers
    3. RecipeRating

    the searching value would be Recipes.RecipeN ame.
    i would like to retrieve the following:
    1. Recipes.*
    2. RegisteredUsers .Username
    3. AVG(Rating) , SUM(Rating)

    that's...
    See more | Go to post
Working...