diff --git a/Schema/view.sql b/Schema/view.sql new file mode 100644 index 0000000..af583d6 --- /dev/null +++ b/Schema/view.sql @@ -0,0 +1,13 @@ +create or replace view grafana_v as + select concat(di.description, '-', de.description) as description, + da.ts as ts, + da.value * di.multiplicator as value, + de.description as device + from device_t de, + dataitem_t di, + devicedataitem_t ddi, + collecteddata_t da + where de.id = ddi.device and + di.id = ddi.dataitem and + da.devicedataitem = ddi.id; +