Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Join tables

Hello All,

I need to know the simple process of joining 3 tables:

table A --------------> table B<----------------Table C

And I don't want to have any Sync table.

Thanks,

1 Solution

Accepted Solutions
MayilVahanan

Hi

Use

In load statement, create the composite key or create the common name for two tables

Load * , compositekey;

Select * from tablename;

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

5 Replies
spsrk_84
Creator III
Creator III

Hi,

Create composite key in each table if you have more than one key in common between the three tables.Such that u can elminate the Synthetic keys/tables.

Thanks

Shiva

Not applicable
Author

Here is the case:

I select my table from database and I create the composite key in the same Select comand ,Or I have to create a linked table?

Thanks for your help?

Not applicable
Author

When I create a composite key I get an error message like this:

SQL ###f- SqlState :$1000,Errorcode:923 ....................... keyword was not found where expected SQL select.....

Any Idea?

MayilVahanan

Hi

Use

In load statement, create the composite key or create the common name for two tables

Load * , compositekey;

Select * from tablename;

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Not applicable
Author

Thanks,

It worked....