• 2022-06-05
    Therewere, __________, 1500 people celebrating on the square.
    A: by number
    B: from number
    C: by my count
    D: from count
  • C

    内容

    • 0

      select count(*) from 表名 having count(*)>;2

    • 1

      若需统计“选课”表中已经选修了课程的学生人数,下面语句正确的是( )。 A: SELECT COUNT(DISTINCT学生号)FROM选课 B: SELECT COUNT(学生号)FROM选课 C: SELECT COUNT(*)FROM选课 D: SELECT COUNT(DISTINCT*)FROM选课

    • 2

      按课程号分类,统计相应的选课人数() A: select cid, count(distinct sid) from sc group by cid B: select cid, count(*) from student group by cid C: select cid, count(distinct cid) from sc group by cid D: select cid, count(distinct sid) from student group by cid

    • 3

      (Short-answer Question)What transitional states are possible when a 4-bit asynchronous binary counter changes from (a) count 2 to count 3 (b) count 3 to count 4 (c) count 1010 to count 1110 (d) count 15 to count 0

    • 4

      查询scott用户的emp表中的总记录数,可以使用下列哪个语句?() A: SELECT MAX(empno) FROM scott.emp; B: SELECT<br/>COUNT(empno) FROM scott.emp; C: SELECT COUNT(comm) FROM scott.emp; D: SELECT COUNT(*) FROM scott.emp;