OK I tried googling for an answer like crazy, but I couldn\'t resolve this, so I hope someone will be able to help.
Let\'s say I have a table of users, very simple t
try this out:
SELECT `userName`, `carPrice` FROM `users` LEFT JOIN `cars` ON cars.belongsToUser=users.id WHERE `id`='4' ORDER BY `carPrice` DESC LIMIT 1
Felix