0
我需要創建一個函數來計算特定日期或之後特定客戶的所有發票。任何人都可以檢查我的功能是否正確或更好的方法來做到這一點。函數計算日期之間的特定客戶的所有發票
create or replace function count_invoice
(cus in number, d in date)
return number
as
num number;
begin
select count(inv_number) into num from invoice
where cus_code = cus and inv_date > d;
return num;
end;
/
看起來沒問題,你試過了嗎? –