I have the following tables:
USER
usuario: id number, name varchar2
1 PEPE
2 LUCAS
REPORT
reporte: id number, usuario_id, owner varchar2
1 1 NULL
2 2 NULL
In the report table, I have records that refer to the user table, Is it possible to do an update so that in the ownwer field I can put the name of the agent?