-----------------------------------------------------
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. Struts2框架之-注解开发

    Struts2主要解决了从JSP到Action上的流程管理,如何进行Uri和action类中每个方法的绑定这是重点,在这里先简单看一下配置文件中的简单配置: <span style=" ...

  2. java泛型编译时被擦除引起多态的破坏,用 桥方法解决此类问题。(java 桥方法)

    在JVM虚拟机中泛型编译的时候,会出现类型擦除.但是,在多态场景中,编译时,擦除方式会出现多态被破坏的可能. 举个栗子: A.java public class A<T> { void g ...

  3. CSS3知识点总结----属性选择器

    1.E[attr]只使用属性名,但没有确定任何属性值 2.E[attr="value"]指定属性名,并指定了该属性的属性值 3.E[attr~="value"] ...

  4. Spring AOP /代理模式/事务管理/读写分离/多数据源管理

    参考文章: http://www.cnblogs.com/MOBIN/p/5597215.html http://www.cnblogs.com/fenglie/articles/4097759.ht ...

  5. js对象(一)

    1.创建对象 /*直接创建*/ var person = new Object(); person.name = "宝宝"; person.age = 3; var person2 ...

  6. 简单的VC++ ADO帮助类

    首先看头文件 #pragma once #import "c:\Program Files\Common Files\System\ado\msado15.dll" no_name ...

  7. CSS中如何让元素隐藏

    在CSS中,让元素隐藏(指屏幕范围内肉眼不可见)的方法很多,有的占据空间,有的不占据空间:有的可以响应点击,有的不能响应点击.下面一个个列出,选一个适合你的 { display: none; /* 不 ...

  8. 获取HTML

    public class GetHtml { public string GetWebRequest(string url) { Uri uri = new Uri(url); WebRequest ...

  9. Git的基础

    http://backlogtool.com/git-guide/cn/intro/intro2_3.html

  10. 《IT蓝豹》完整阅读软件客户端app

    完整阅读软件客户端app,本项目里面还有扫描功能,搜索本地书籍,不过扫码功能通过c++层实现的. 本项目来自:https://github.com/JayFang1993/ScanBook Captu ...