Firebird存储过程

Firebird存储过程--更加人性化的设计

begin

 

For select house_id,goods_id ,qty

    from  table1 where id=:VAR_ID

into :var_house_id,:var_goods_id,:var_qty

do

 update goods_stock set

       stock_qty=stock_qty + :var_qty

    where house_id=:var_house_id and goods_id=:var_goods_id;

 

  suspend;

end

这段代码是讲一个单据table1的数量添加到库存里面。

同样的功能在别的数据库系统,是如何实现的,在代码上是否如此小清新?

当我们在抱怨数据库系统的 update table1 set qty=qty + table2.qty from table2 where table1.id = table2.id 

这样的代码难于理解的时候,是否考虑过:我们选择了正确的数据库系统了吗?

 

参考资料:Firebird ,Interbase相关教程

 

你可能感兴趣的:(存储过程)