Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Virtual column not allowed here error

Eslam_ElbyalyJul 11 2022

Hi. I am using Oracle APEX 22.1.1.
I created a form based on a sql query that joined two tables...
select r.ID,
r.PATIENT_ID,
r.DOCTOR_ID,
r.DIAGNOSIS,
r.FOLLOWUP_DATE,
r.ROSHETA_DATE,
p.name patient_name, p.age, p.address
from ROSHETA_HDR r join patient p
on p.id = r.patient_id;
I set all columns of table "patient" as query only but when I insert a new record, I always get error "Virtual column not allowed here". Is that normal?

This post has been answered by Eslam_Elbyaly on Jul 12 2022
Jump to Answer
Comments
Post Details
Added on Jul 11 2022
3 comments
1,367 views