SQL插入语句带入子查询
SQL插入语句带入子查询比如现在有一个数据库q里面的一张表a是管理权限的,表的内容大概是:姓名xm,权限qx,是否有权限t/f;有两个人张山,李四;现在张山在qx这个字段...
SQL插入语句带入子查询比如现在有一个数据库q 里面的一张表a是管理权限的,表的内容大概是:姓名xm,权限qx,是否有权限t/f;有两个人张山,李四;现在张山在qx这个字段有
xm qx tf
张山 1 t
李四 1 t
张山 2 t
李四 2 t
李四 3 t
。。。
也就是说,李四有的权限张山不是全部都有,现在要把张山的权限搞来和李四一样,如何写! 展开
xm qx tf
张山 1 t
李四 1 t
张山 2 t
李四 2 t
李四 3 t
。。。
也就是说,李四有的权限张山不是全部都有,现在要把张山的权限搞来和李四一样,如何写! 展开
2个回答
2018-05-28 · 知道合伙人软件行家
Axure夜话
知道合伙人软件行家
向TA提问 私信TA
知道合伙人软件行家
采纳数:1197
获赞数:1344
1992年毕业于太原理工大学,20年IT公司工作经验现任山西誉海和科技有限公司技术总监,老二牛车教育课程总监
向TA提问 私信TA
关注
展开全部
提供一个简单思路:
1:找出李四的权限
select qx from a where xm='李四'
2:找出张三的权限
select qx from a where xm='张三'
3:使用子查询找出李四有的权限,张三没有的权限
select qx from a where xm='张三' and qx not in (select qx from a where xm='李四')
4:生成数据
insert into a(xm,qx,tf) select ,'张三',qx,1 from a where xm='张三' and qx not in (select qx from a where xm='李四')
1:找出李四的权限
select qx from a where xm='李四'
2:找出张三的权限
select qx from a where xm='张三'
3:使用子查询找出李四有的权限,张三没有的权限
select qx from a where xm='张三' and qx not in (select qx from a where xm='李四')
4:生成数据
insert into a(xm,qx,tf) select ,'张三',qx,1 from a where xm='张三' and qx not in (select qx from a where xm='李四')
追问
insert into a(xm,qx,tf) select ,'张三',qx,1 from a where xm='李四' and qx not in (select qx from a where xm='张山') 非常感谢,这是我修改后的,能正常执行,也能达到效果!
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询