12、查找尤金•奧尼爾EUGENE O'NEILL得獎的所有細節

我:

select yr , subject , winner from nobel

where winner = 'eugene o'neill ' ;

无法查询。

正确:

select yr ,subject ,winner from nobel

where winner = 'eugene o\'neill ';

13、列出爵士的獲獎者、年份、獎頁(爵士的名字以Sir開始)。先顯示最新獲獎者,然後同年再按名稱順序排列。

我:

select winner , yr ,subject from nobel

where winner like 'sir%'

order by yr ,winner desc;

正确:

select winner ,yr, subject from nobel

where winner like 'sir%'

order by yr desc ,winner asc;

最新文章

  1. 跨应用使用Spoon框架截图的方法
  2. 深入研究java.lang.Runtime类
  3. PL/SQL远程连接Oracle的方式,无需安装客户端
  4. mysql创建每月执行一次的event
  5. Maven运行时异常java.lang.UnsupportedClassVersionError的解决方案
  6. photoshop基础
  7. cocos2dx-lua使用UIListView制作二级折叠菜单
  8. 应付期间 Payables Periods
  9. Java中对象的三种状态
  10. android studio之argument for @notnull parameter 'name'
  11. Simditor图片上传
  12. 异步API
  13. Oracle的窗口和自动任务
  14. 【WebGL】《WebGL编程指南》读书笔记——第3章
  15. matplotlia应用
  16. iOS 简易型标签的实现(UICollectionView)
  17. @resource、@Autowired、@Service在一个接口多个实现类中的应用
  18. PHP源码安装经常会碰到的问题及解决办法
  19. 安装scrapy 出现error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools": http://landinghub.visualstudio.com/visual-cpp-build-tools 错误
  20. ZOJ 1259 Rails

热门文章

  1. Oracle物化视图梳理
  2. Git 与SVN
  3. MySQL:视图
  4. 基于TCP的安卓服务器开发
  5. [转] Ubuntu16.04完美安装Sublime text3
  6. SpringBoot的学习【4.快速实现一个SpringBoo的应用】
  7. UA池和代理池
  8. 【leetcode】441. Arranging Coins
  9. Python全栈之路----编程基本情况介绍
  10. SQLI DUMB SERIES-12