-----------------------------------------------------
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. SQL Server 自定义聚合函数

    说明:本文依据网络转载整理而成,因为时间关系,其中原理暂时并未深入研究,只是整理备份留个记录而已. 目标:在SQL Server中自定义聚合函数,在Group BY语句中 ,不是单纯的SUM和MAX等 ...

  2. 关于Java static 的学习心得

    static,大家都很熟悉.但是要说真的懂,那就很少了.(当然我也不是很懂,但不妨碍学习吗.) 首先,我认为static修饰的成员就是属于类本身的成员.如果你加了一个static修饰符,好吧,那就相当 ...

  3. Python面试题

    1.Python装饰器 详情 2.设置多个Python项目使用不同版本的Python和第三方库 使用PyEnv 详情 3.PEP8 详情 4.参数传递 按引用传递 5.列表解析,字典解析 详情 6.列 ...

  4. GET与POST的区别

    转自http://blog.csdn.net/darxin/article/details/4944225#comments HTTP请求的GET与POST方式的本质区别可以参考hyddd在<浅 ...

  5. MATLAB 文件对话框之图片格式转换

    localpathname为当前路径,需要保存图片的位置,根据自己的实际路径设置,usedpathname用来保存打开的文件位置,方便下次打开文件对话框以上次的路径为默认路径. global used ...

  6. 微信支付之JSAPI开发-第二篇:业务流程详解与方案设计

    微信支付流程 流程: 上图的网址为:https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=7_4 如上图所示,微信网页支付的具体流程大致分为 ...

  7. 一年成为emacs高手

    http://blog.csdn.net/redguardtoo/article/details/7222501

  8. 学习C:程序

    #include <stdio.h> main(){ /*将输入复制到输出,并将其中连续的多个空格用一个空格代替*/ int c,nb; nb = 0; while((c = getcha ...

  9. Chrome浏览器Network面板http请求时间分析

    Chrome浏览器开发者工具Network窗口下,可以查看下载各组件所需的具体时间 根据上表进行简要分析-- Stalled(阻塞) 浏览器对同一个主机域名的并发连接数有限制,因此如果当前的连接数已经 ...

  10. html 报表导出excel防止数字变科学计数

    在html 标签加:  <html xmlns:x="urn:schemas-microsoft-com:office:excel">    在要导出的tr加:  &l ...