向stu表中插入数据(1,’张三’,’男’,18),以下插入操作正确的是()。
A. insert stu (1,’张三’,’男’,18)
B. insert into stu as (1,’张三’,’男’,18)
C. insert into stu values(1,’张三’,’男’,18)
D. 以上都不对
将stu表中学号(no)为1的记录的年龄增加2岁,下列操作正确的是()。
A. update stu age=age+2 where no=1
B. update stu age=age+2 no=1
C. update stu set age=age+2 where no=1
D. update stu set age=age+2 no=1