Zath Constraint Violating Yak Guru
USA 255 Posts
khtan In (Som, Ni, Yak)
Singapore 16746 Posts
SELECT a.reportedBy AS [user], b.fName + b.lName AS [fullname] FROM tblReports a INNER JOIN tblUsers b ON a.reportedBy = b.userId
harsh_athalye Flowing Fount of Yak Knowledge
India 5509 Posts
quote:Originally posted by khtan SELECT a.reportedBy AS [user], b.fName + ' ' + b.lName AS [fullname] FROM tblReports a INNER JOIN tblUsers b ON a.reportedBy = b.userId KH
SELECT a.reportedBy AS [user], b.fName + ' ' + b.lName AS [fullname] FROM tblReports a INNER JOIN tblUsers b ON a.reportedBy = b.userId