Viewing 4 posts - 1 through 4 (of 4 total)
Sorry about that. I have the data ok but would like to know if it's possible to improve.
select ac.full_name, ai.*, pev.program_name
from all_clients_view ac left join
alt_id_view ai
on ac.people_id = ai.people_id left...
May 8, 2019 at 2:01 pm
So this should be fine? select a.*, b.full_name from alt_id_view a
left outer join all_clients_view b
on a.people_id = b.people_id
It's only bringing in the matched so it could be the system we...
May 7, 2019 at 8:47 pm
Is it possible a Userid or password has been disabled?
August 19, 2009 at 10:30 am
in the report check your report parameters, make sure that they are there and as you want them. It sounds like the dates are embedded there, make them nulls.
August 17, 2009 at 3:04 pm
Viewing 4 posts - 1 through 4 (of 4 total)