Hi. I have a Name table with the columns NameID Name TypeID
With the following SQL
SELECT[NameID]
FROM[Name]
WHERE[TypeID] = @TypeID
AND NameID >= (SELECT MIN([NameID])
FROM [Name]
WHERE [Name]='Billy' AND [TypeID]=@TypeID)
Ive been asked to convert this to an Inner Join without using any nested select but not sure how to. thanks for your help!