How to replace IDs of users with their fullNames in the current scenario?
问题 I have two databases with the following schema: tbl_users(userID, fullName, emailID, password) userID is the Primary Key tbl_savings(savingsID, creditorName, amount, interestRate, interestType, interestCalculationMethod, ownerID, dataEnteredByID) savingsID is the Primary Key. ownerID is a Foreign Key on userID of tbl_users with a one-to-many relationship. ownerID specifies the ID of the owner of the saving. Similarly, dataEnteredByID specifies the ID of the person who entered the data. I have