Mysql-基本查询 4/10
mysql>select * from student;
mysql>select *from student where id=901;
mysql>select * from student where id in(903,910);
mysql>select * from student where name like "张三";
mysql>select distinct sex from student;
mysql>select * from student order by birth;

浙公网安备 33010602011771号