Update table according with JSON/JSONB
Question:
I have a table books :
Name of columnType
idint (PK)
nametext
nb_pagesint
And a table book_modifications :
Name of columnType
idint (PK)
old_datajsonb
new_datajsonb
book_idint (FK)
Now let's imagine I have a row in my...
databasedev.hashnode.dev2 min read