bmaster1962 Posted 10 Months ago through
Interview Questions
What will be the result of query:
<pre class="brush: sql">
SELECT
COUNT(*) as C1,
COUNT(A) as CA,
COUNT(B) as CB,
SUM(A) as SA,
SUM(B) as SB
from [test].[dbo].[Table_1]
</pre>
On table:
<pre class="brush: plain">
ID ...