数据库:where条件
where条件:1.id>3select * from user where id>3;2.id>=3select * from user where id>=3;3.id<3;select * from user where id<3;4.id<=3;select * from user where id<=3;5.id>3...