msg.query = "SELECT value FROM Zimmer_Temp WHERE time >= '" + msg.payload.time + "' LIMIT 1";
Or
msg.query = `SELECT "value" FROM Zimmer_Temp WHERE time >= '${msg.payload.time}' LIMIT 1`;
See down the print screen. I would like to be able to realize the complete query with variables. The one marked in green already works, but i got some problems with de yellow ones, because they absolutely have to stand between two quotation marks.