0
I want to create a new table for each client and I want to complete the account table with the client id I am creating in another table as in the example below:
await db.run('create table if not exists conta**ID** (saldo INTEGER);')
for each client created in the client table he gets an id automatically, I would like to take his id save in a variable to complete the name of this new table with the value of it, how do this?