Mysql – Here is my database: Is there any way to extract a list of the amount of times the same book has been borrowed alongside the title_name?
I have attempted to use inner joins but not sure which would connect where? Do I need to add another FK somewhere? SELECT user_name, fkbook_id FROM users INNER JOIN loans ON user_id = fkuser_id ORDER BY fkbook_id; i've managed to…