I have 2 tables, one that I will select a set of records and the other table that holds the sort order for the selected records.
Table A:
UniqueID int
OwnerID int
RowID var
Description var
HelpText var
Table B:
UniqueID int
UniqueRow var
SortOrder var
A.RowID = B.UniqueRow
I want to select specific A.OwnerID records and sort that collection by B.SortOrder Acending.
There has to be a simple select statment to do this...
Table A:
UniqueID int
OwnerID int
RowID var
Description var
HelpText var
Table B:
UniqueID int
UniqueRow var
SortOrder var
A.RowID = B.UniqueRow
I want to select specific A.OwnerID records and sort that collection by B.SortOrder Acending.
There has to be a simple select statment to do this...