• 2022-06-18
    假定用户表user有多列,其中字段id中没有null值,字段username中存在null值。下面选项中,不能获得user表的总记录数的SQL语句是( )
    A: select count(*) from user;
    B: select count(id) from user;
    C: select count(username) from user;
    D: select count(id) from user where1=1;