I'm currently trying to create a report using SQL Developer.
I have these 2 tables:
PERSONS (IDPerson, NamePerson)
PENALTIES (IDPenalty, DatePenalty, Description, IDPerson)
The tables are polulated.
How could I create a table like
using recursive queries in SQL? or it's there any other solution? Thank you in advance.