Skip to content
Advertisement

Tag: insertion

If a table has columns equal to columns in a second table insert values in a third table, python – mysql

I have 3 table in my database: Borrowers: amount of the loan, interest rate, borrower id (PK) Lenders: amount of the bid, interest rate and LenderID (PK) Contracts: ContractID PK, amount, interest rate and the two foreign key(borrowerID, lenderID) I create a loop in python with an input command in which I can insert new request of loan and new

Advertisement