2

我正在尝试创建此触发器并收到以下编译器错误:

create or replace
TRIGGER RESTAR_PLAZAS
AFTER INSERT ON PLAN_VUELO
BEGIN
SELECT F.NRO_VUELO, M.CAPACIDAD, M.CAPACIDAD - COALESCE((
SELECT count(*) FROM PLAN_VUELO P
WHERE P.NRO_VUELO = F.NRO_VUELO
       ), 0) as PLAZAS_DISPONIBLES
FROM VUELO F
      INNER JOIN MODELO M ON M.ID = F.CODIGO_AVION; 
END RESTAR_PLAZAS;


Error(2,7): PL/SQL: SQL Statement ignored
Error(8,5): PL/SQL: ORA-00933: SQL command not properly ended
Error(8,27): PLS-00103: Encountered the symbol "end-of-file" when expecting one of the following:     begin case declare end exception exit for goto if loop mod    null pragma raise return select update while with    <an identifier> <a double-quoted delimited-identifier>    <a bind variable> << close current delete fetch lock insert    open rollback savepoint set sql execute commit forall merge    pipe 
Error(2,1): PLS-00428: an INTO clause is expected in this SELECT statement

这个触发器有什么问题?

4

3 回答 3

2

你将不被允许

从 PLAN_VUELO 中选择计数(*)

在 PLAN_VUELO 的触发器中

不要使用触发器。使用存储过程。

于 2011-01-17T08:48:39.243 回答
1

只需根据结果类型添加 into 子句,例如:

declare
  my_result VUELO%rowtype;
begin
  select v.* into my_result from VUELO v where id = '1';
end;
于 2012-09-24T18:21:36.120 回答
1

在 PL/SQL 块中,您必须做SELECT ... INTO一些事情。我昨天在回答你的一个问题时举了一个例子。在这种情况下,您可能希望选择一个局部变量,然后使用结果更新另一个表。

但看起来你可能会得到很多结果,因为你并没有局限于你感兴趣的价值;这些WHERE子句不会过滤任何插入行的:NEW值。这将导致 ORA-02112。您需要确保您的选择将准确返回一行,或者如果您确实想要多行,请查看游标。

于 2011-01-17T07:49:04.053 回答