Oracle PL/SQL - Are NO_DATA_FOUND Exceptions bad for stored procedure performance?

后端 未结 12 979
Happy的楠姐
Happy的楠姐 2021-02-03 23:14

I\'m writing a stored procedure that needs to have a lot of conditioning in it. With the general knowledge from C#.NET coding that exceptions can hurt performance, I\'ve always

12条回答
  •  萌比男神i
    2021-02-04 00:06

    The count(*) will never raise exception because it always returns actual count or 0 - zero, no matter what. I'd use count.

提交回复
热议问题