Hi
I am new to Qlikview. Can you mail me how to join two tables using sql select.
Regards
Mukundan
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Joginder BangerPosted Dec 9, 2014, 1:18 AM
Table
Emp department
id fk_deprtmentid name pk_departmentid DepartmentName
1 1 Mukundan 1 Software Eng
Query
select e.name,d.DepartmentName from emp e inner join department d on d.pk_departmentid=e.fk_deptmentid
i hope you query is solved