ResultSet对象一次只能看到一个数据行,使用next()方法移到下一个数据行,next()方法最初的查询位置,即游标位置,位于第一行的前面。
查看答案
SQL语句:select * from mess where height>l.6 and height<=l.8是查询mess表中字段(列)height值在1.6和1.8之间的记录(记录的各个列值都要)。
A. 对
B. 错
SQL语句select * from mess where name like ‘%林%’是查询mess表中字段(列)name值包含有“林”的记录(记录的各个列值都要)。
A. 对
B. 错
SQL语句update mess set height =1.77 where name='张三'是将mess表中name字段(列)值是张三的记录(行)的height的值更新为1.77。
A. 对
B. 错
SQL语句insert into mess values('R1008', '蒋林', '2010-12-20',1. 66),( 'R1008', '秦仁', '2010-12-20',1.66)是向表mess里添加了两条记录(两行)。
A. 对
B. 错