as
  v_count number;
BEGIN
select count(td) from oper_sort into v_count;
if v_count>0 then
  insert into test.alert(count,DATEDD) values(v_count,sysdate);
end if;
END count;第四行那错了,不能直接把这个统计值插入v_count吗?或者要用其他什么方法了实现这个