Tag: variable
Comment utiliser une variable dans une clause WHERE ?
1. don't set the variable in the script to an empy value (let Myvar = '';)
2. use right notation in Where Clause:
WHERE (Field1 =...
Comment sélectionner plusieurs valeurs d’une dimension ?
In this post, I will demonstrate how to programmatically select multiple values in a field.
We know that manually, we can select multiple field values...
Insérer dans une variable
Select foo from table;
let variable = peek('foo',0,'tmp');
drop table tmp;
DATA:
Select baa from table where baa < $(variable);