I am trying to write some data in SQL server via MSSQL node. I connected the node to the server and in the flow correctly, written the query in editor mode, but when I deploy the flow, it sends back the error: “Incorrect syntax near ‘,’.”
My query:
INSERT INTO [dbo].[TEST_NodeRed]
([Sch1],
[Sch12],
[Sch16]
) VALUES
({{{payload.Sch1}}},
{{{payload.Sch12}}},
{{{payload.Sch16}}}
)
I first tried to insert query via function node, but it worked even worse than now.
The error occurs once every 10 s.
Thanks in advance.