Skip to content
Discussion options

You must be logged in to vote

Hi! if your table has a row (even with a single column and a value of NULL), then it is not considered empty. You should add a where condition to the query that computes the total.

select 'table' as component; 

select name, value, total from products; 
select sum(total) as total from products having count(*)>0;

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@lozdown
Comment options

Answer selected by lozdown
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants