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 語句 比較查詢:運算符= <
相關文章
相關標籤/搜索