A.COUNT(*)返回組中項目的數(shù)量,這些項目不包括NULL值和重復(fù)值 B.MAX忽略任何空值,對于字符列,MAX查找排序序列的最大值 C.MIN忽略任何空值,對于字符列,MIN查找排序序列的最低值 D.SUM返回表達(dá)式中所有值的和,空值將被忽略
A.A inner join B B.A left join B C.A right join B D. Across join B
A.update table A setcol2=’N’ where col1=1 B.modify table A setcol2=N where col1=1 C.update A set col2=’N’ where col1=1 D.modify A set col2=N where col1=1