
Contributor III
2023-05-08
04:54 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Joining two qvds using inner join
I want join two qvds using inner joining so I have two common fields between two tables those are order_number and item_number
Labels (8)
Labels
713 Views
1 Solution
Accepted Solutions

MVP
2023-05-08
05:34 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi
Just do the inner join, it will reflect based on both fields.
Load * from QVD1.qvd(qvd);
Inner join
Load * from QVD2.qvd(qvd);
Suppose if you want to do based on one field alone, then rename one of the field.
Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Please close the thread by marking correct answer & give likes if you like the post.
693 Views
1 Reply

MVP
2023-05-08
05:34 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi
Just do the inner join, it will reflect based on both fields.
Load * from QVD1.qvd(qvd);
Inner join
Load * from QVD2.qvd(qvd);
Suppose if you want to do based on one field alone, then rename one of the field.
Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Please close the thread by marking correct answer & give likes if you like the post.
694 Views
