Can anyone help me correct with this code in Lambda Nodejs with multiple input event params.
I've tried already the following but no luck!
ABC = ? WHERE XYZ = ?;', event['ABC', 'XYZ'], function (error, results, fields)
ABC = ? WHERE XYZ = ?;', event['ABC']['XYZ'], function (error, results, fields)
ABC = ? WHERE XYZ = ?;', event['ABC'], event['XYZ'], function (error, results, fields)