Hallo Herr Balogh,
sie können den SQL-Code Ihrer Abfrage einfach editieren. Aus
select ...
from ...
where ...
machen Sie
drop table if exists tempStatistikErgebnisCountTable;
create temporary table tempStatistikErgebnisCountTable as(
select count(*)
from ...
where ...
);
select * from tempStatistikErgebnisCountTable where count != 0;