MySQL之查询语句

1.select 语句 查询student表的前2行数据 select * from student limit 2; 查询student表中第4行到第5行数据 (3,5] select * from student limit 3,5; 查询student表中的全部学生的民族信息 select distinct 民族 from student; 2.where 语句 比较查询:运算符= <
相关文章
相关标签/搜索