Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[b]select[/b]
sum(count)
[b]from[/b] (
[b]select[/b]
count(*) count
[b]from[/b] tbl1
[b]where[/b] field1=1
[b]union all[/b]
[b]select[/b]
count(*)
[b]from[/b] tbl2
[b]where[/b] field1=1
) foo;