I wan't to show and edit a table from one database in another.
My database I opened is reg_onthaal.
With this sql I create my form (browsescreen)
Code: Select all
select w.*, c.* from reg_begeleidingsteam.wachtlijsten w
left join reg_begeleidingsteam.clienten c on cl_id = wl_cl_id
left join reg_begeleidingsteam.wachtlijst_locatie on loc_id = wl_loc_id
left join reg_begeleidingsteam.problemen on wl_probleem = pro_id
left join reg_begeleidingsteam.beschikbaarheid on wl_beschikbaar = bes_id
left join reg_begeleidingsteam.reden_afsluit on afs_id = wl_reden_eind
where wl_eind is null
order by wl_loc_id, wl_start
Any idea if and how I can solve this?Table 'reg_onthaal.reg_begeleidingsteam.wachtlijsten' doesn't exist
Thanks again
Johan