新手发帖,很多方面都是刚入门,有错误的地方请大家见谅,欢迎批评指正
1.创立一个Oracle存储过程,设置一个参数n
然后执行这个存储过程传一个参数n,执行后输出5遍hello world
注:存储过程当中用使for环循,执行用使exec
create or replace procedure Hello(n in number) is begin for i in 1..n loop dbms_output.put_line('hello world'); end loop; end; /
--开打输出 set serveroutput on;
--执行该函数 execute Hello(5);
2.创立一个序列(初值为1030,步进为1),
然后用使这个序列给emp表入插2条据数
(要求写出序列的创立语句和入插据数的语句)
create sequence myse increment by 1 start with 1030; insert into emp_xxx values(myse.nextval,'张无忌','Manager',10000,2000,'12-7月-10',1005,10);
文章结束给大家分享下程序员的一些笑话语录: N多年前,JohnHein博士的一项研究表明:Mac用户平均IQ要比PC用户低15%。超过6000多的参加者接受了测试,结果清晰的显示IQ比较低的人会倾向于使用Mac。Mac用户只答对了基础问题的75%,而PC用户却高达83%。