-----------------------------------------------------
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. <读书笔记>软件调试之道 :问题的核心-重现问题

    声明:本文档的内容主要来源于书籍<软件调试修炼之道>作者Paul Butcher,属于读书笔记. 重现第一,提问第二 问题重现是实证过程的最强大武器,如果不能重现问题,你也无法证明修复了它 ...

  2. Vagrant的一个BUG - 不支持'change_host_name'

    ==> master: Setting hostname... Vagrant attempted to execute the capability 'change_host_name' on ...

  3. XML.03-DOM和SAX解析

    body,td { font-family: calibri; font-size: 10pt } XML.03-DOM和SAX解析 XML的DOM解析 解析 处理 回写 XML的SAX解析 SAX和 ...

  4. SEO优化小技巧

    /** * seo优化课程 * 先谢慕课网 */ /** * SEO基本介绍 * SEO与前端工程师 */ /** * SEO基本介绍 * 搜索引擎工作原理:输入关键字------查询------显示 ...

  5. mac 查看无线wifi的密码

    finder->应用程序->实用工具->钥匙串访问->右上角输入wifi名查找->显示密码(需要管理员账号)

  6. MVP模式和MVVM模式

    MVP模式 模型-视图-表示器,也就是MVP模式.是mvc模式的一种衍生模式,专注于改进表示逻辑. 与MVC不同,来自view的调用将委托给presenter(表示器),表示器通过接口与view对话. ...

  7. c# 的MD5加密算法

    发现用C#封装好的内部类实现MD5加密和其它语言的MD5加密结果有时会不一样,暂时发现没有特殊字符时的结果是一样的,一旦有特殊字符(09404719290010210‹»×úÛ±8*«À‡7œ–201 ...

  8. MS SQLSERVER 存儲過程與緩存

    提升SQL Server最具性能的一个方面就是存储过程,SQL Server具备执行计划的缓存功能,以便计划重用.SQL Server2000增强了ad-hoc执行计划的缓存功能,就处理存储过程上性能 ...

  9. unity3d 知识点随记

    1.transform.translate是增加transform面板相应的数值x,y,z是以本地坐标系为方向:transform.transformdirection是以世界坐标系为方向,可以去测试 ...

  10. iOS 开发 常用的正则验证表达式:电话 、邮箱等等

    #pragma mark - 验证手机号 +(BOOL)checkForMobilePhoneNo:(NSString *)mobilePhone{ NSString *regEx = @" ...