私の目的は、2012 年 9 月の未払いの請求書を表示することです。
create view Viewe as
select companyname,salutation,firstname,lastname, billingadd, billing.latestatus
from CUSTOMER, CUST_NONRES, BILLING
where cust_nonres.customerid = billing.custid
and to_date(to_char(billingdate, 'MON-YYYY')) = to_date('092012', 'MON-YYYY')
and PAID = 'NO';
ビューから*を選択したときのエラーは次のとおりです
ORA-01858: 数値が予期される場所に数値以外の文字が見つかりました. 入力データには、形式モデルで必要な数値が含まれていませんでした。*処置: 入力データまたは日付形式モデルを修正して、要素の数とタイプが一致するようにしてください。その後、操作を再試行してください。
ご協力いただきありがとうございます。
私はそれを次のように変更しました:
create view Viewe as
select companyname,salutation,firstname,lastname, billingadd, billingdate, billing.latestatus, amount
from CUSTOMER, CUST_NONRES, BILLING
where cust_nonres.customerid = billing.custid
and customer.customerid = cust_nonres.customerid
and TRUNC(billingdate, 'MM') = to_date('092012', 'MMYYYY')
and PAID = 'NO';
- - - - - - - - - - - - - - アップデート
こんにちはみんな、誰でも私を助けることができますか、どうすればそれを要約できますか、生成されたエントリを合計するためにどの構文を使用できますか. ありがとう。