我的目标是查看 SEP/2012 月份尚未支付的账单
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';
当我从 viewe 中选择 * 时,这是我的错误
ORA-01858:在预期数字 01858 的地方发现了非数字字符。 00000 - “在预期数字的地方发现了非数字字符” *原因:要使用日期格式模型转换的输入数据不正确. 输入数据不包含格式模型需要数字的数字。*操作:修复输入数据或日期格式模型,以确保元素在数量和类型上匹配。然后重试该操作。
谢谢你的帮助。
我已将其更改为:
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';
- - - - - - - - - - - - - - 更新
嗨,伙计们,任何人都可以帮助我,我怎么可能总结它,我可以使用什么语法来总结生成的条目。谢谢。