select Users.* from Users
inner join Property on Users.UserID = Property.JAID
where Groupid = 24
order by Property.lot
This query brings back all the records I want but with some duplicate rows which I want to exclude.
I can get SELECT DISTINCT to work for 1 column queries, but not multiple ones
help please
inner join Property on Users.UserID = Property.JAID
where Groupid = 24
order by Property.lot
This query brings back all the records I want but with some duplicate rows which I want to exclude.
I can get SELECT DISTINCT to work for 1 column queries, but not multiple ones
help please