Hello,
I was trying to do an query on a GlobalTable and my params are data into an array. The number of parameters are variable, so there is a way of "descontruct" the array into the params?
Ex:
Array arr = ['par1', 'par2', 'par3']; Table result = Table.query("SELECT * FROM GlobalTable1 WHERE Col1 = $1 AND Col2 = $2 AND Col3 = $3", arr);
In the example above, 'par1' should enter in $1, 'par2' in $2 and so on.