create view stuscore as select students.*,scores.score from scores inner join students on scores.stuid=students.id;
select * from stuscore;