database - How to create a `inline` table that refers to other tables in QlikView? -


for training create table data , 2 related tables (a_left, a_right) in . using database works well, how can inline?

(the idea work without database copy comple script se example.)

a_left: load a_id_left,      a_name_left inline [   a_id_left, a_name_left   1, 'nwsnd'   2, 'dcsdcws' ];  a_rigtht: load a_id_right,      a_name_right inline  [   a_id_right, a_name_right   1, 'nwsnd'   2, 'dcsdcws' ];  data: load id,       a_id_left,      a_name_left 'name_left',      a_id_right,      a_name_right 'name_right',      data inline [   id, a_id_left, a_right_id, data   1, 1, 2, 37   1, 1, 3, 18   1, 2, 3, 62 ]; 

thanks ideas.

this script close doing want think. in load syntax before inline, cannot reference column not defined in following inline (they'll join , function based on relations). also, had minor typo on 1 of id's.

a_left: load a_id_left,      a_name_left inline [   a_id_left, a_name_left   1, 'nwsnd'   2, 'dcsdcws' ];  a_rigtht: load a_id_right,      a_name_right inline  [   a_id_right, a_name_right   1, 'nwsnd'   2, 'dcsdcws' ];  data: load id,       a_id_left,      a_id_right,      data inline [   id, a_id_left, a_id_right, data   1, 1, 2, 37   1, 1, 3, 18   1, 2, 3, 62 ]; 

*you have meant create resident memory table post guessing not needed in case; of qlikview can use structure defined above.


Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -