SQL> select * from a1;

	ID NAME
---------- ----------
1 a
1 a
2 a
3 a SQL> select * from a2; ID
----------
2
3
2 SQL> select * from a1 where id not in (select id from a2); ID NAME
---------- ----------
1 a
1 a SQL> select a1.* from a1,a2
2 where a1.id=a2.id(+)
3 and a2.id is null; ID NAME
---------- ----------
1 a
1 a

最新文章

  1. 工厂模式 - Factory
  2. 使用js脚本批量下载慕课网视频
  3. ASP.NET 上传文件最大值调整
  4. struts 用拦截器进行用户权限隔离,未登录用户跳到登录界面 *** 最爱那水货
  5. BZOJ1932——[Shoi2007]Setstack 集合堆栈机
  6. 用javascript判断一个html元素是否存在的五种方法:
  7. android 基础项目及开发出现:error opening trace file: No such file or directory错误解决
  8. ASP.NET 学习博客
  9. Linux启动或禁止SSH用户及IP的登录
  10. try/catch异常捕捉
  11. pyqt4 写动画不能播放问题集合
  12. Java数据类型之byte、char
  13. 移动端跨平台方案对比:React Native、weex、Flutter
  14. Vue使用的一些实例
  15. 迅为-i.MX6Q核心板_四核工业级
  16. ASP.NET MVC实现Excel文件的上传下载
  17. 2017-07-20 在Maven Central发布中文API的Java库
  18. GUI_事件监听机制与ActionListener演示
  19. pgm16
  20. Executor框架(七)Future 接口、FutureTask类

热门文章

  1. ubuntu15.10下sublime text3 无法输入中文解决办法
  2. Linux文件/目录权限整理
  3. Session,ViewState用法
  4. 在fragment中调用SharedPreferences
  5. mvc5 + ef6 + autofac搭建项目(四).1视屏上传生成截图
  6. [转载]SQL字符串处理函数大全
  7. ZOJ 1057 Undercut(简单模拟)
  8. 打印十进制数n 递归
  9. [转]Python核心模块——urllib模块
  10. php5下载,apache2.4与php5整合