Forum Replies Created

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

  • RE: sql statement puzzle

    yeah you are right.   Over at sqlteam.com there is an area where people are into tuning sql statements - and that is what I am looking for...

  • RE: sql statement puzzle

    well indeed this is actually an Access db and not a question specific to SQLserver per se.  In general the Access forums are not heavy in sql statements so thought...

  • RE: Return most occuring records

    Got the answer from another site....for anyone who reads this and has the same need...the following works great:

    SELECT *
    FROM Table1 As Main
    WHERE Main.NameField In
      SELECT TOP 1 Sub.NameField
        FROM...
  • RE: Return most occuring records

    no no - sorry but thanks for the effort....this returns only the single name of the most recurring name i.e. if I use your code with TOP 1 it will...

  • RE: sql calc & syntax question

    I've over-explained....here is the essence:

    Have this Table:

    Loc     Ref     Quant     Series       Boxed(this value from form)

    A        1       1350         1350        ...

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