Hi,
I downloaded the RsMergeArch from the NCBI. I want to find out the SNPs which are merged more than once out of all SNPs. I wrote the below SQL query:
insert into rsmergearch_filtered
SELECT rsmergearch.rsHigh,rsmergearch.rsLow
from rsmergearch
where rsmergearch.rsLow
in (select rsmergearch.rsHigh from rsmergearch);
But this didn't give the complete list of SNPs which are merged more than once where I double checked later. Please advice me on this regard.
Thanking in advance.
Thank you for the reply. Now I got the correct output.