题目查询“计算机系”与“电子工程系“不同职称的教师的Tname和Prof。相关知识点: 试题来源: 解析 select tname,prof from teacher where depart='计算机系' and prof not in (select prof fromteacher where depart='电子工程系'); null反馈 收藏
select tname,prof from Teacher where Depart in ('计算机系','电子工程系') and Prof not in (select prof from Teacher where Depart='电子工程系' and Prof in (select Prof from Teacher where Depart='计算机系'))
然后,外部查询继续取出下一个元组数据,执行上述的操作,直到全部元组均被处理完毕。
你好!看下这样是否可以 select tname,prof from teachers where depart in ('计算机系','电子工程系')仅代表个人观点,不喜勿喷,谢谢。
百度试题 结果1 题目查询“计算机系”与“电子工程系“不同职称的教师的Tname和Prof。相关知识点: 试题来源: 解析 select tname,prof from teacher where depart='计算机系' and prof not in (select prof from teacher where depart='电子工程系');反馈 收藏 ...