P
pol
In have three table
1. tb_Employee ( id, emp_name,departmentid)
2. tb_Department ( id,dept_name)
3. tb_salary(id,empid,deptid,sal_month)
I need to give the following sql
Select a.id,a.name,b.dept_name,c.sal_month
from tb_Employee a, tb_Department b, tb_salary c
where a.departmentid = b.departmentid ( Inner join )
and a.id (+) = c.empid ( Outer Join )
How I can give the same sql in Ms Access. Please let me know.
With Thanks and regards
Polachan
1. tb_Employee ( id, emp_name,departmentid)
2. tb_Department ( id,dept_name)
3. tb_salary(id,empid,deptid,sal_month)
I need to give the following sql
Select a.id,a.name,b.dept_name,c.sal_month
from tb_Employee a, tb_Department b, tb_salary c
where a.departmentid = b.departmentid ( Inner join )
and a.id (+) = c.empid ( Outer Join )
How I can give the same sql in Ms Access. Please let me know.
With Thanks and regards
Polachan