I am having a hard time doing the following:
select a.FirstName, a.LastName, v.District from AddTbl a order by Firstname inner join (select distinct LastName
add "distinct" after "select".
select distinct a.FirstName, a.LastName, v.District , v.LastName from AddTbl a inner join ValTbl v where a.LastName = v.LastName order by Firstname