Can someone help me with this. I’m using SQL-Developer.
say this is my query
select
ac.customer_name,
acra.receipt_number,
acra.receipt_amount amount_value,
rcta.trx_number,
rcta.attribute5 as office_code
from
ar_customers ac,
ar_cash_receipts_all acra,
ra_customer_trx_all rcta
where
ac.customer_id=acra.customer_id and
acra.cash_receipt_id = rcta.cash_receipt_id and
acra.receipt_amount > 5000;
to this output i want to add a column stamp_value which should contain value 1 .
how to do it?
Is this what you need?