if suppose i have 2 tables jobs and emp having 2 common fields whic are linked....fields:jobid and empid...
table linking is like...from emp to jobs
then using enforce from..v can select only 'to table' fields rite ...
but im not getting the values....
using enforce to
(select empname from employees where emp.jobid=jobs.jobid )
using enforce from
(select jobdesc from jobs where emp.jobid=jobs.jobid)
is this two queries rite..??...
but for me...oly if i select fields from to table i.e; jobs table den oly its displaying values...or else nothing is being displayed
so plz help me out....