DML 基礎查詢語句

查詢表中前三條數據 select * from student limit 3; 查詢表中從第二條數據開始,向後數3條 select * from student  limit 1,3; 查詢成績中及格的前三人 select id,grade from score where grade>=60 limit 3; 平均年齡 select avg(age) as 平均年齡 from student;
相關文章
相關標籤/搜索