10 lines
183 B
MySQL
10 lines
183 B
MySQL
|
INSERT INTO pressures (
|
||
|
pressure_id,
|
||
|
pressure_value,
|
||
|
pressure_from_date,
|
||
|
pressure_till_date,
|
||
|
sensor_id,
|
||
|
creation_date,
|
||
|
update_date
|
||
|
)
|
||
|
VALUES ($1, $2, $3, $4, $5, $6, $7);
|