hi am raj!
am a asp , sql server 2000 programmer

i need a sql query to select unique rows based on noofcards,versionno,id here am giving the database
-------------------------------------------
id email ccno vno nc
-------------------------------------------
41 b@r.com f 2465 1 1
41 b@r.com f 9898 1 3
41 b@r.com a 9898 1 2
41 b@r.com f 2465 2 1
41 b@r.com e 6226 2 2
41 b@r.com s 2465 3 1
------------------------------------------
ccno = creditcardno
vno = versionno
no = noofcard

the o/p i should get is
-------------------------------------------
id email ccno vno nc
-------------------------------------------
41 b@r.com f 3554 1 3
41 b@r.com e 6226 2 2
41 b@r.com s 2465 3 1
------------------------------------------

i tryed this query
select * from creditcardinfo where versionno =(select max(versionno) from creditcardinfo where id =41)

but am getting only one row with the maxversionno

41 b@r.com s 2465 3 1

so, pleas help me in getting the row i 've specified above.

any help will be appreciated.

SELECT distinct(ccno) FROM creditcardinfo

Anything just ask!

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.