2
Answers

How to get distinct values in 2 columns in SQL server table

Kumar AU

Kumar AU

10y
676
1
Table 1
APPID | CERTID  | CERTNAME
--------------------------------
11111 |1|ABCD
22222 |2|EFGH
33333 |3|IJKL
11111 |4|XYZ
44444 |5|JHJ
22222 |6|KJHK
11111 |7|TUHJ

Note:- here cert is is PK and its not repatable where as App Id is repetable columns values

In this table How do I get distinct App Id and corresponding certId ,

This is my query , here still I am getting duplicate AppId's

Select distinct(APPID),CERTID from Table1

Please Please Can any one help me.
Answers (2)
0
Ramesh  Maruthi

Ramesh Maruthi

NA 6.1k 406.2k 10y
1 Way:  


Select CERTID ,APPID
   FROM
   (
     Select CERTID, APPID,
ROW_NUMBER() OVER(PARTITION BY APPID ORDER BY CERTID Asc) rn
From  Table1)s
Where rn =1
ORDER BY CERTID 


2nd way:




Select MIN(CERTID ) CERTID , APPID 
from Table1
Group BY APPID 
0
Dipankar Biswas

Dipankar Biswas

NA 3k 125.6k 10y