SQL插入语句带入子查询

2024-12-21 20:58:16
推荐回答(2个)
回答1:

提供一个简单思路:
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='李四')

回答2:

这个应该是update语句吧,还是我理解错了你的意思