Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Left Join

Two SQL Scripts from different servers.

Table1:

SQL

Table2:

SQL

I would like to see all records from table 1 but only the matching records from Table2. How do I accomplish this?

What I have is not working, see below

Table1:

SQL

Select *

////************////

RIGHT JOIN (Table1)

Table2:

SQL

Select *

2 Replies
sunny_talwar

You are using Right join in the shared script when you need a Left Join (as your title)

Table1:

SQL

Select *

////************////

Left JOIN (Table1)

SQL

Select *

FROM....

MarcoWedel

Hi,

can you share some sample data of both your tables as well as your expected result?

thanks

regards

Marco