I have demo & visit tables.
But, not all client IDs are on both tables.
I want to return all of records on tbl Visit and then join to tbl Demo if Client IDs exist on both tables.
select d.ClientNo, d.ClientFName, d.ClientLName, v.VisitDate
from demo d, Visit v
where d.ClientNo= v.ClientNoVisit
order by d.ClientLName, v.VisitDate
thx much
But, not all client IDs are on both tables.
I want to return all of records on tbl Visit and then join to tbl Demo if Client IDs exist on both tables.
select d.ClientNo, d.ClientFName, d.ClientLName, v.VisitDate
from demo d, Visit v
where d.ClientNo= v.ClientNoVisit
order by d.ClientLName, v.VisitDate
thx much