Viewing 5 posts - 1 through 5 (of 5 total)
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...
December 27, 2006 at 6:55 pm
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...
December 27, 2006 at 2:00 pm
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...
October 30, 2006 at 9:49 am
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...
October 30, 2006 at 9:22 am
I've over-explained....here is the essence:
Have this Table:
Loc Ref Quant Series Boxed(this value from form)
A 1 1350 1350 ...
March 16, 2006 at 1:40 pm
Viewing 5 posts - 1 through 5 (of 5 total)