Hi,I have the following query and table, they are functioning properly however I would like to extend on to the functionality. This query brings back the latest votes, however I would like to bring back the latest votes where users have reciprocated votes with the user they have voted for. Not sure exactly how to do this so any help is appreciated. I have included the table structure below as well as the query so far.Thanks very much! 
mike123select top 10 voteForID,voterID,UV.points,UV.date,UD1.nameOnline as voteFor_nameOnline, UD2.nameOnline as voter_nameOnlineFROM tbluservote UVJOIN tblUserDetails UD1 on UD1.userID = voteForIDJOIN tblUserDetails UD2 on UD2.userID = voterIDorder by UV.date descCREATE TABLE [dbo].[tblUserVote]( [voteID] [int] IDENTITY(1,1) NOT NULL, [voteForID] [int] NOT NULL, [voterID] [int] NOT NULL, [date] [smalldatetime] NOT NULL, [points] [tinyint] NOT NULL(