10 lines
198 B
MySQL
10 lines
198 B
MySQL
|
INSERT INTO temperatures (
|
||
|
temperature_id,
|
||
|
temperature_value,
|
||
|
temperature_from_date,
|
||
|
temperature_till_date,
|
||
|
sensor_id,
|
||
|
creation_date,
|
||
|
update_date
|
||
|
)
|
||
|
VALUES ($1, $2, $3, $4, $5, $6, $7);
|