• Hello,

    After some tries I did it as the below

    SELECT *,

    (select COUNT(*) from Table1 where myfield = 'False') as Expr1,

    (select COUNT(*) from Table2 where myfield = 'False') as Expr2,

    (select COUNT(*) from Table3 where myfield = 'False') as Expr3

    FROM Settings

    I hope it be useful for other searchers