We're Moving to a New Support Platform – Starting June 1st!
We’re excited to let you know that starting June 1st, we’ll be transitioning to a new support system that will be available directly on our product websites – Amelia, wpDataTables, and Report Builder. In fact, the new support platform is already live for Amelia and wpDataTables, and we encourage you to reach out to us there.
You'll always be able to reach us through a widget in the bottom right corner of each website, where you can ask questions, report issues, or simply get assistance.
While we still do not offer live support, a new advanced, AI-powered assistant, trained on our documentation, use cases, and real conversations with our team, is there to help with basic to intermediate questions in no time.
We're doing our best to make this transition smooth and hassle-free. After June 1st, this current support website will redirect you to the new "Contact Us" pages on our product sites.
Thanks for your continued support and trust – we’re excited to bring you an even better support experience!
Hello,
please enable me to run my SQL query in wpDataTables. Stored procedures can not, and this query throws a bug. The SQL query in Heidi and phpMyAdmin works OK.
SQL Query:
with trn as (SELECT td.datetime,
MAX(IF(td.id_pen_name=10,td.value, NULL)) AS pen1,
MAX(IF(td.id_pen_name=11,td.value, NULL)) AS pen2
FROM trend_data AS td
WHERE (
td.id_pen_name=10 OR
td.id_pen_name=11
) AND (td.datetime BETWEEN '2017-02-12 01:00:29' AND '2017-03-03 01:00:29')
GROUP BY td.datetime),
time_table as (SELECT (@datecounter:=DATE_ADD(@datecounter, interval 30 second)) as datetime
FROM trend_data as td, (SELECT @datecounter := DATE_ADD('2017-02-12 01:00:29', interval -30 second)) as r
WHERE @datecounter<'2017-03-03 01:00:29'),
all_table as (SELECT tt.datetime,
(@prev1 := coalesce(trn.pen1, @prev1)) as pen1,
(@prev2 := coalesce(trn.pen2, @prev2)) as pen2
FROM time_table AS tt
LEFT OUTER JOIN trn ON trn.datetime=tt.datetime
JOIN (SELECT @prev1:=(SELECT value FROM trend_data AS td where td.id_pen_name=10 and td.datetime<='2017-02-12 01:00:29' ORDER BY td.datetime DESC LIMIT 1)) as x1
JOIN (SELECT @prev2:=(SELECT value FROM trend_data AS td where td.id_pen_name=11 and td.datetime<='2017-02-12 01:00:29' ORDER BY td.datetime DESC LIMIT 1)) as x2)
-- SELECT * from all_table
SELECT FROM_UNIXTIME((UNIX_TIMESTAMP(tm.datetime) div 3600)*3600+3600) as resample_time,
(CASE 0 WHEN 0 THEN round(AVG(tm.pen1),3) WHEN 1 THEN round(MIN(tm.pen1),3) WHEN 2 THEN round(MAX(tm.pen1),3) WHEN 3 THEN round((tm.pen1),3) ELSE NULL END) as pen1,
(CASE 0 WHEN 0 THEN round(AVG(tm.pen2),3) WHEN 1 THEN round(MIN(tm.pen2),3) WHEN 2 THEN round(MAX(tm.pen2),3) WHEN 3 THEN round((tm.pen2),3) ELSE NULL END) as pen2
FROM all_table AS tm
GROUP BY resample_time;
Hi jiri,
Thank you for your purchase.
If your MySQL-query based wpDataTable doesn’t work correctly with server-side processing, probably this is happening because wpDataTables server has problems with parsing of the query and building new queries dynamically (happens rarely, but does sometimes). To avoid this please prepare a MySQL view (a stored query), which will return the data that you need, call it e.g. “view1” and then build a wpDataTabled based on a simple query like “SELECT * FROM view1″.
Kind Regards,
Isidora Markovic
wpDataTables: FAQ | Facebook | Twitter | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Amelia demo sites | Docs
You can try our wpDataTables add-ons before purchase on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables