问答题
修改表student的数据,将所有一班的学生成绩加10分。
update student set score=score+10 where classno=1;
问答题 向表student中插入如下2行。
问答题 创建序列stuseq,要求初值为20050001,增量为1,最大值为20059999。
问答题 在表student的SNAME属性上创建索引student_sname_idx.