MySQL Query Action
Run MySQL query completely serverless via Thingsup IoT Platform. Insert or get data from MySQL with simple MQTT rules engine or HTTP APIs.
Query
SELECT * FROM `books` WHERE `author` = `HC Verma`SELECT * FROM test WHERE tutorial_id=1//Example 1
SELECT * FROM `books` WHERE `author` = ? AND `ID` = ?
//params.push(payload.author); //as a function
//params.push(payload.id);//Example 2
SELECT * FROM test WHERE tutorial_id=?
//params.push(payload.id); //as a function//Example 3
SELECT * FROM `sanju` WHERE `tutorial_id`=? AND `tutorial_title`=?
//params.push(payload.id); //as a function
//params.push(payload.title);Function
Connection ID

Last updated
Was this helpful?