Two tables:
表A: 
     numberA
----------------
     123
     321
     456
     241
     233表B: 
    numberB
----------------
     123
     233
     241我的问题是,如何在一个表中算出totalnumbers of A(是5)和 表A-表B (是2),还要 Label the columns ‘A' and ‘A-B’ respectively.You can not use a solution like 
select (count(numberA)-3) from A
You need to use a the solution like
select (count(numberA)-count(numberB)) -----> not correctMy question is how to combine the two values in one table and label the columns ‘A' and ‘A-B’ respectively