2 list on the same page and total of the two list total

Hello

I create a list with the following SQL command:

SELECT
id,
kapital,
transfer,
bonus,
notitz
FROM
InOut
WHERE
bonus IS NULL

Now I also need the list on the same page:

SELECT
id,
kapital,
transfer,
bonus,
notitz
FROM
InOut
WHERE
bonus IS NOT NULL

Finally, I want to add up the two sums from the two lists.

First part was easy… :wink: