Hi,
I need to add a value to a table. So I've created MSSQL node and input my msg as following.
INSERT INTO alert(email,alert,status,interval) VALUES('{{{msg.email}}}','time',1,10)
But it output a blank instead of the value of msg.email
. I have checked the output by intiating a debug node as msg.email. It gives the correct output.
What is causing this?