-----------------------------------------------------
The election officials were not neutral.
选举官员并不是中立的。
Do you think we should nominate Tom as our committee representative? (2)
你认为我们应该提名汤姆为我们委员会的代表吗?
She observed everyone who walked past her house. (1)
她观察每一个经过她门口的人。
He took off the rope so his dog could run. (5)
他把绳子松开让他的狗跑跑。
【offensive】(1) a military campaign of attack; (2) having to do with attacking.
* The government offensive began with an air attack. (1)
政府的军事进攻从空袭开始。
Members of our local parents and teachers organization are electing an official to represent them at the state level. (2)
The American colonists declared independence because Britain oppressed them with heavy taxes and brutal force. (2)
美国殖民者宣布独立因为英国以暴力及苛捐杂税压迫他们。
The rebels ousted the President. (2)
造反者把总统推翻了。
The people of Yugoslavia overthrew the President. (1)
南斯拉夫人民推翻了总统。
She is an official of our church council. (1)
她是教会的一名官员。
The sergeant ordered the marching soldiers to halt. (1)
那警官命令正行进的士兵停下来。
The report said the generals were plotting to overthrow the government. (2)
报道说将军们正密谋推翻政府。
------------------------------------------
Oracle

begin
for so_cur in (select * from ofs_ord_so where so_num = '21848')
loop
DBMS_OUTPUT.PUT_LINE(so_cur.so_num);
end loop;
end;

declare
TYPE soNumType IS TABLE OF ofs_ord_so.so_num%TYPE;
soNums soNumType;
begin
SELECT so_num BULK COLLECT INTO soNums FROM ofs_ord_so where so_num between '21848' and '21900';
FOR i IN soNums.FIRST .. soNums.LAST
LOOP
dbms_output.put_line(soNums(i));
END LOOP;
end;

20151210study的更多相关文章

随机推荐

  1. javascript运行模式:并发模型 与Event Loop

    看了阮一峰老师的JavaScript 运行机制详解:再谈Event Loop和[朴灵评注]的文章,查阅网上相关资料,把自己对javascript运行模式和EVENT loop的理解整理下,不一定对,日 ...

  2. FFT的分析以及matlab实验

    FFT(Fast Fourier Transformation),即为快速傅氏变换,是离散傅氏变换(DFT)的快速算法. 采样得到的数字信号,做FFT变换,N个采样点,经过FFT之后,就可以得到N个点 ...

  3. closest应用(向上查找最近的资料)

    //新增网址信息function AddSitInfo(a) {    var obj = $(a).closest("td[name='POIRestaurant_Reference_UR ...

  4. sql prompt 安装使用教程

    sql prompt:和vs的自动提示一样 数据库:2008r2 下载地址:http://download.csdn.net/detail/wozengcong/9048381 安装教程:http:/ ...

  5. 利用循环播放dataurl的视频来防止锁屏:NoSleep.js

    mark下. 地址:http://www.open-open.com/lib/view/open1430796889882.html

  6. NodeJs解析web一例

    var http = require('http'); var fs = require('fs'); var url = require('url'); http.createServer(func ...

  7. 《CoffeeScript应用开发》学习:第二章 编写第一个CoffeeScript应用程序

    CoffeeScript基础 语句 CoffeeScript没有分号,语句由新的一行结束,但是可以使用\将语句延续至下一行. 有时可以跨行实现函数调用: "foo". .conca ...

  8. 线程+IO流

    第十八天知识点总结 线程的停止: 1.停止一个线程,一般是通过一个变量来控制. 2.如果需要停止一个处于一个等待状态的线程,那么需要配合interrupt方法来完成 守护线程(后台线程):在一个进程中 ...

  9. 一个简单的零配置命令行HTTP服务器

    http-server 是一个简单的零配置命令行HTTP服务器, 基于 nodeJs. 如果你不想重复的写 nodeJs 的 web-server.js, 则可以使用这个. 安装 (全局安装加 -g) ...

  10. java打包成jar,但不打包配置文件

    有时候我们做java project的时候,都会打包成jar程序,为了方便部署会加个配置文件conf/pro.properties(conf文件夹与src文件夹同级) 但是不想打包进jar.其实用ec ...