update person set age=20 where id=3;语句表示()。
A. 在person表中将id为20的记录的age字段值更新为3
B. 在person表中将id为3的记录的age字段值更新为20
C. 在person表中将age为3的记录的id字段值更新为20
D. 以上说法都不正确
查看答案
MySQL更新数据表的命令中,where子句的作用是更新满足条件的记录。
A. 对
B. 错
下列哪个数组声明是非法的()
A. int[][] t=new int[4][4]
B. int[][] t=new int[5][]
C. int[][] t=new int[][4]
D. int[]t[]=new int[4][]
执行代码int [ ] a = new int[7];后,以下说明正确的是()
A. a[6]为0
B. a[6]未定义
C. a[7]为0
D. a[0]为空
下列数组的声明不合法的是()
A. int[ ] buff = {3,4 , 1 , 99};
B. char buff = new char[ ];
C. byte buff [ ] = new byte[10];
D. String buff [ ];