Good day!
There is a request:
SELECT players.uname, itemtypes.it_name,count( playerittemtype.itemtype ) AS count FROM itemtypes, playerittemtype, players WHERE itemtypes.`it_id` = playerittemtype.`itemtype` AND players.`uid` = playerittemtype.`player` GROUP BY playerittemtype.`itemtype`
When prompted, the user name, item name, and item quantity are displayed. And here's the catch: the number of items displays the one in the table, and I need to display only the quantity of one item that is assigned to this user. Help advice?