A. select (name) from table person; 所有记录的name字段的值 B. select (name) from table person where age=12;查找age=12的记录的那个字段的值 C. select (name) from person where age=12 or name="aa";or 或者 D. select (name,age) from person where age=12 and name="aa"; and 并且
A. 对 B. 错
A. x的取值范围 B. y的取值范围 C. 连续性 D. 给定x如何确定对应的y E. 给定y是否能够唯一确定x