Suppose there is such a query that displays the number of rows for each filter:
SELECT (`delivery`), COUNT(*) FROM prod_data WHERE `delivery` = 'Евросоюз Cream' OR `delivery` = 'Cream BetaPost' GROUP BY `delivery` Question: How can I calculate the sum of the number of rows in the above sample?