oracle触发器的用法问题

小弟初学oracle,我想在在student上使用触发器,建表语句如下:createtablestudent(idnumber(5)primarykey,namevarc... 小弟初学oracle,我想在在student上使用触发器,建表语句如下:
create table student
(
id number(5) primary key,
name varchar(10),
sex varchar(5),
score number(5) check(score>=0 and score<=100)
)
触发器中使用记录表类型,但是我使用select into到记录表时,老是报警告: 创建的触发器带有编译错误。是不是我的用法有错误呢,麻烦各位赐教!不甚感激
create or replace trigger addtrigger
before insert on student for each row
declare
type table_studentid is table of number
index by binary_integer;
table_sid table_studentid;
begin
select * into table_sid from student;
end;
展开
 我来答
奔驰M888
2010-05-27 · TA获得超过1.1万个赞
知道大有可为答主
回答量:1846
采纳率:0%
帮助的人:2712万
展开全部
你的触发器有两处错误。

1、你的 table_sid 是一个 number型的数组,因此你select * 是不可以的。
2、你想把你查询的结果直接写到数组里面,必须用 buik collect into的语法。

正确写法如下,虽然我不知道你select into 的目的。

[TEST@ora10gr1] SQL>create or replace trigger addtrigger
2 before insert on student for each row
3 declare
4 type table_studentid is table of number
5 index by binary_integer;
6 table_sid table_studentid;
7 begin
8 select id bulk collect into table_sid from student;
9 end;
10 /

触发器已创建

[TEST@ora10gr1] SQL>

---
以上,希望对你有所帮助。
华夏日长兴
2010-05-27 · TA获得超过9592个赞
知道大有可为答主
回答量:6305
采纳率:85%
帮助的人:3747万
展开全部
create or replace trigger addtrigger
before insert on student for each row
declare
type table_studentid is table of number;
index by binary_integer;
table_sid table_studentid;
begin
insert into table_sid select * into from student;
end;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
icyjhl
2010-05-27 · TA获得超过117个赞
知道答主
回答量:59
采纳率:0%
帮助的人:37.8万
展开全部
create or replace trigger addtrigger
before insert on student for each row
begin
insert into table_sid select * from student;
end;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式