select * from 表名; select * from students; 查询students表中的所有内容
指定字段查询
select 字段1,字段2 from 表名;
比如只想看id,name这两列
select id,name from students;