• 2022-06-05
    检索student表中的前3条记录信息,可以使用下面()SQL语句。
    A: select*fromstudentlimit1,3;
    B: select*fromstudentlimit1;
    C: select*fromstudent;
    D: select*fromstudentlimit3;