Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a problem with declaring my variable in a load script.
Leeftijd_Map:
Mapping LOAD
$(#CurrentMTO)&'#'&`antwoord_waarde` as antwoord1,
antwoord as AntwoordLeeftijd;
SQL SELECT *
FROM $(CurrentMTO).`antwoord_type` WHERE `antwoord_type_nr` = 5;
What is the right way to declare on the third row.
$(#CurrentMTO)&'#'&`antwoord_waarde` as antwoord1,
Allready thanks a lot.
Greetz,
Dirk
'$(#CurrentMTO)' & '#' & `antwoord_waarde` as antwoord1
'$(#CurrentMTO)' & '#' & `antwoord_waarde` as antwoord1
Thanks for the help
I allready found one solution how it works.
'$(CurrentMTO1)#'&`antwoord_waarde` as antwoord1,
Greetz,
Dirk