Edit command error

Hi,
if in the EDIT command I use table.column (1) I get an error. I usually enter the table name and then search for the field with the Ctrl+dot key combination (but clearly this is not a problem for the dual table :blush:)

  1. edit dual where dual.dummy = 'X' -- Error ORA-00904
  2. edit dual where dummy = 'X' -- Ok

Thank's!

Hi.

Thanks for reporting it. I'll fix.

FWIW, this works:

edit emp e where e.job = 'CLERK'

Thank you very much!