Hi,

what is the best way to check that a table is empty?

I have procedure with the following statement:
select count(*) into v_count from test_abc_prices;
then i'm checking whether count(*) >0:

if (v_count > 0) then null
Is there a more efficient way?