I have 2 datatables
Table 1 (Type6) has fields: StopNo
Table 2 (StationName) has fields: StopNo, Name
What I want to do is to join the 2 tables, so in sql it would be this:
SELECT DISTINCT Type6.STOPNO, StationName.NAME FROM Type6 JOIN
StationName on StationName.STOPNO=Type6.STOPNO order by NAME”
How do I do this with 2 datatables holding the same information?
… Let me know if this does the trick…