sql基础 --单表查询 select * from student; select * from score; --投影查询 select * from student; --条件查询 select * from student where sno=001 or sno=004 ; --查询001 和004两条记录 select * from student where sno in (001,004); --查询001~004之间的记录 select * from student where…