sql怎么把查询出来的数据生成update或insert语句
我有两个QQ炫舞的角色,但是如果到了周六周日的话,有点券拿,我上了其中一个角色,但是在不同的区,另外的一个角色可以拿同样的点券吗??...
我有两个QQ炫舞的角色,但是如果到了周六周日的话,有点券拿,我上了其中一个角色,但是在不同的区,另外的一个角色可以拿同样的点券吗??
展开
1个回答
展开全部
使用子查询啊--------------------------------------------------------
例如:更新学员编号为101的考试成绩
update from Student set stuScore=99 where stuName=
(select stuName from Student where stuId=101)
//将入学状态学生添加到一个表中
insert into 表名(字段列表) values (值列表) in(
select stuName from Student where stuDate=1)
例如:更新学员编号为101的考试成绩
update from Student set stuScore=99 where stuName=
(select stuName from Student where stuId=101)
//将入学状态学生添加到一个表中
insert into 表名(字段列表) values (值列表) in(
select stuName from Student where stuDate=1)
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询