select * into 表1 from 表2 5

我想把这段代码查出来的东西保存在表里怎么弄selectStudentName,dbo.Student.studentNo,StudentResult,ispass=cas... 我想把这段代码查出来的东西保存在表里 怎么弄

select StudentName,dbo.Student.studentNo,StudentResult,
ispass=case
when StudentResult>=60 then 1
else 0
end

from dbo.Student
inner join (select * from dbo.Result where ExamDate=@date and SubjectNo=@num) as
w on dbo.Student.StudentNo=w.StudentNo

,,,为什么这样不行?

select * into 表1 from (

select StudentName,dbo.Student.studentNo,StudentResult,
ispass=case
when StudentResult>=60 then 1
else 0
end

from dbo.Student
inner join (select * from dbo.Result where ExamDate=@date and SubjectNo=@num) as
w on dbo.Student.StudentNo=w.StudentNo

)
展开
 我来答
sunmiqin
推荐于2017-11-25 · TA获得超过206个赞
知道小有建树答主
回答量:158
采纳率:50%
帮助的人:196万
展开全部
1.INSERT INTO SELECT语句
语句形式为:Insert into Table2(field1,field2,...) select value1,value2,... from Table1
要求目标表Table2必须存在,由于目标表Table2已经存在,所以我们除了插入源表Table1的字段外,还可以插入常量
2.SELECT INTO FROM语句
语句形式为:SELECT vale1, value2 into Table2 from Table1
要求目标表Table2不存在,因为在插入时会自动创建表Table2,并将Table1中指定字段数据复制到Table2中。

比较两种语句的差别,选择适合自己情况的语句。
此外,ispass是个经过处理的字段,其值类型可能无法自动创建,所以,建议使用第一种形式的语句,建立一个表,然后再插入查询。
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式