how to solve

C

cliff

hi, I am quite new to access. trying my best to learn. I have small problem

mytable is something like this
sr nos
1 14
1 18
1 25
2 16
2 23
2 45
3 17
3 20
3 42
4 8
4 18
4 45
5 12
5 23
5 27

playtable random nos ( 3 per id)
id nos
1 16
1 23
1 25

now I want to see how many nos from playtable matching nos from mytable, my
query is something like this and works fine

SELECT [mytable].nos
FROM [mytable]
WHERE exists (select [playtable].nos
from [playtable]
where [mytable].nos=[playtable].nos);

But I want to know playtable nos matching for a range of sr from mytable
like sr=1 to 3 or sr=1 to 2 or sr=3 to 5. how to do that?. can you help me
out please!

thanks in advance
cliff
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

help please 1
find balance nos 3
arranging in particular order 1
selecting nos from table 1
selecting nos 2
complex query 1
query to sort nos 2
query to sort data 3

Top