I created a totals table which is a summation of column of another table but when i add another entry in the parent table the totals table is not changing below is my sql quey
\\
CREATE TABLE emphayatotals AS
SELECT
SUM(available_for_use_month)
,SUM(available_for_use_today)
,SUM(expected_tomorrow)
,SUM(expected_before_monthend)
FROM emphayas;
I tried creating the table ussing As but still not changing the totals in the total table even if i refresh