V
Van T. Dinh
Note for potential respondents: this is the 3rd post-dated message from the
poster.
--
Van T. Dinh
MVP (Access)
poster.
--
Van T. Dinh
MVP (Access)
D.Nandakumar said:Hi,
Thanks for the reply.
Please consider this.
mobile name date
------- ----- ----
9441212345 xyx 01/01/03
9441212345 xyx 01/01/03
9441212345 xyx 01/01/03
9441212345 abc 05/15/03
9441212345 abc 05/15/03
9441212345 abc 05/15/03
9441212345 pop 01/01/04
9441212345 pop 01/01/04
9441212345 pop 01/01/04
here i want to select the images where the date is NOT letest.
In this case i want extrac the first 6 rows. How?
Thanks in advance.
Nandha.
Hi,
Well, accordingly to the data you supplied:
SELECT *
FROM myTable
WHERE [date]=( SELECT MAX([date])
FROM myTable )
Hoping it may help,
Vanderghast, Access MVP
D.Nandakumar said:Hi i have a table like this
mobile name date
------- ----- ----
9441212345 xyx 01/01/03
9441212345 xyx 01/01/03
9441212345 xyx 01/01/03
9441212345 abc 05/15/03
9441212345 abc 05/15/03
9441212345 abc 05/15/03
9441212345 pop 01/01/04
9441212345 pop 01/01/04
9441212345 pop 01/01/04
i want to select mobile nos for which date is latest. in this i want to
extract only the last 3 rows
How to do this.
thanks in advance.
Nandha.