-----------------------------------------------------
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. 20个编写现代CSS代码的建议

    明白何谓Margin Collapse 不同于其他很多属性,盒模型中垂直方向上的Margin会在相遇时发生崩塌,也就是说当某个元素的底部Margin与另一个元素的顶部Margin相邻时,只有二者中的较 ...

  2. StrangeIoc框架学习----在项目中实战

    最近,因为公司的项目一直在研究StrangeIoc框架,小有所得,略作记录. StrangeIoc是一款基于MVCS的一种框架,是对MVC思想的扩展,是专门针对unity开发的一款框架,非常好用. 一 ...

  3. 转:MyBean的安装

    1.下载MyBean源码包.可以到https://git.oschina.net/ymofen/delphi-framework-MyBean下载Zip压缩包,也可以用Git客户端下载. 2.将框架源 ...

  4. Java日志——2016.6.3

    1)二维数组的静态初始化:                int[][] arr = new int[][] { {1,2,3}, {4,5}, {6,7}} 2)杨辉三角: /** *    需求: ...

  5. CSS基础01

    1.line-height:设置每行的高度,默认是会以文字的高度来决定 2.text-align:设置文本的对齐方式 3.vertical-align: sub 垂直对齐文本的下标. super 垂直 ...

  6. android sqlite datetime demo

    @Override public void onCreate(SQLiteDatabase db) { String sql="create table user ( username va ...

  7. 两个APP之间怎么调用《IT蓝豹》

    两个app之间怎么调用?   (1):通过显示Intent 启动    首先:配置好B app 的action,即AndroidManifest.xml中声明 <intent-filter> ...

  8. Ext.get Ext.getDom Ext.getCmp 的区别

    Html DOM     Ext Element   Component Component 最高层 Html DOM 最基础 Ext.getCmp  是  Ext.ComponentMgr.get ...

  9. python之路-Day7

    编程范式 编程是 程序 员 用特定的语法+数据结构+算法组成的代码来告诉计算机如何执行任务的过程 , 一个程序是程序员为了得到一个任务结果而编写的一组指令的集合,正所谓条条大路通罗马,实现一个任务的方 ...

  10. Mysql Innodb 间隙锁浅析

    间隙锁说明 innodb引擎自动使用间隙锁来避免幻读(原因是因为innodb采用单行锁+间隙锁组合而成的行锁,会锁定一个范围和记录本身的行),参数默认innodb_locaks_unsafe_for_ ...