PKGBUILD/pkg/storage/postgres/insertPressure.sql

10 lines
183 B
MySQL
Raw Normal View History

2019-08-20 19:37:45 +00:00
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);