Here is my problem
I have a table say
trialId country
1 USA
1 canada
1 Jamaica
2 USA
3 Afganistan
4 India
4 S. Africa
I want to get trials conducted in US but nowhere else
resultset should look like
trialId country
2 USA
and the opposite Trials elsewhere but not in US
resultset
trialID country
3 Afganistan
4 India
4 S. Africa
how can I do it easily
Thanks
I have a table say
trialId country
1 USA
1 canada
1 Jamaica
2 USA
3 Afganistan
4 India
4 S. Africa
I want to get trials conducted in US but nowhere else
resultset should look like
trialId country
2 USA
and the opposite Trials elsewhere but not in US
resultset
trialID country
3 Afganistan
4 India
4 S. Africa
how can I do it easily
Thanks