Hello,How can I select data from a table and row counts from multiple tables in a viewfor example:Select * from Settings -- it gets 1 row onlySelect count(*) from NewApps where Status = 'False'Select count(*) from myUsers where Status = 'Pending'I just want to get them all in 1 view
↧