Hi.
In fact, the result of my SQL query gives:
1
21
22
23
24
29
30
31
32
33
34
35
36
And I need to have :
1,21,22,23,24,29,30,31,32,33,34,35,36 (I make a mistake I need comma and not semicolon)
So I try:
{STRING(Replace,{TASK(042a22e7-7380-42ac-9b2a-bae3b65efdb0,StdOut)},CrLf,,)}
{STRING(Replace,{TASK(042a22e7-7380-42ac-9b2a-bae3b65efdb0,StdOut)},\n,,)}
{STRING(Replace,{TASK(042a22e7-7380-42ac-9b2a-bae3b65efdb0,StdOut)},\n\r,,)}
So now I have 2 problems!
- I don't know how to define line break in the query
- And the last comma in the query make "Error in argument"
I need that because I want to make an SQL Query like that:
Update table myTable set myFild = xxxx where id IN (1,21,22,23,24,29,30,31,32,33,34,35,36)
Any idee?
Thk.