Bonsoir,
Je suis connecté à ma base de donnée en ODBC,
J'aimerai savoir si il est possible de créer une table puis joindre une table de ma base à cette table.
Par exemple :
MaTable :
Load * [id,b
1,aef
2,efz
3,zrr
];
ODBC connect to Mabase;
Load *;
Select * from table1; //Table1 contenue dans Mabase
Left join Mabase ON MaTable.id=Table1.id;
Et quand je fais ça on me dit que MaTable n'existe pas dans Mabase (ce qui est vrai, vu que je l'ai créée moi même)
Merci d'avance si quelqu'un peut m'éclairer
MaTable :
Load * [id,b
1,aef
2,efz
3,zrr
];
ODBC connect to Mabase;
// here QlikView joins (left/right/full outer joins) using the fields in MaTable and Table1 with the same name,
// in your example I suppose id; there is no need to using on ....as in sql
left join (MaTable)
Load
*;
Select * from table1; //Table1 contenue dans Mabase
here for detail
MaTable :
Load * [id,b
1,aef
2,efz
3,zrr
];
ODBC connect to Mabase;
// here QlikView joins (left/right/full outer joins) using the fields in MaTable and Table1 with the same name,
// in your example I suppose id; there is no need to using on ....as in sql
left join (MaTable)
Load
*;
Select * from table1; //Table1 contenue dans Mabase
here for detail
Thank you for your answer, fast and precise.