这个(select sid,stuName from student )这里可以加where吗
SELECT sid, stuName into tempScore from teacher where ...
tempScore表要求不存在,执行本条sql会自动创建。
select 条件 from database.table [where ... ] insert into database.table;
select 列名 from database.table [过滤条件 ] insert into database.table;