So imagine i have two tables, Car and Driver, with respectively these structure :
(hash TEXT PRIMARY_KEY, brand TEXT, driver INTEGER)
and
(id INTEGER PRIMARY_KEY, name TEXT)
So now let's fill our table and imagine we insert into those table
("abcdefghi", "Honda",125)
in Car
and in Driver
(125,"Marc").
What i'm looking for is an instruction that from Renault
and Marc
that updates effectively my table to transform ("abcdefghi", "Honda",125)
into ("abcdefghi, "Renault",125)
.