I am running the below query in Oracle SQL. Table has 2 columns, first is rowid type and second is a varchar.
INSERT INTO MYTABLE SELECT 'AAAAAAAAAAAAAAAAAA' RID, NULL FROM DUAL;
The result is adding null in both columns.
Why is this happening?
Shouldn't 'AAAAAAAAAAAAAAAAAA' be added to the first column of the table?