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;

posted @ 2013-04-10 15:11  瑾 梦  Views(119)  Comments(0)    收藏  举报