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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
siva0606
Contributor III
Contributor III

Mapping load

Does mapping load requires two columns of data? Is it necessary?

2 Replies
er_mohit
Master II
Master II

the purpose of using mapping load is to drop one field of one table to other table

for this in two tables you have must  one primary key then using mapping load,

load 1st field which is primary key to both table and through that field load another field which you want to drop it in another table while execution...

Not applicable

hi

the concept of mapping table is that,

the mapped table(table1) have atleast two column(field name), 1st column must be primary key and on the basis of it we mapped the 2nd column from table2.

primary key must be common in both table.

example--

mapping load

               productid,

               productname     from table1;

load orderid,

       item,

       quantity,

       productid

Applymap('table1',productid) as productname

from table2;

hope this helps you.