Hello, Here is my query : ```sql SELECT a.* FROM a LEFT JOIN ( SELECT b.id, b.name FROM b ORDER BY b.date_created DESC LIMIT 1 ) c ON c.id = a.iduser ``` and Magic Query removes the "JOIN" keyword (not for a simple JOIN), here is the result: ```sql SELECT `a`.* FROM `a` LEFT (SELECT `b`.`id`, `b`.`name` FROM `b` ORDER BY `b`.`date_created` DESC LIMIT 1) `c` ON ( `c`.`id` = `a`.`iduser`) ``` Any idea how to solve this issue ? Thanks in advance!