FerreroJeremy/ln2sql

Inconsistant generated SQL Statement

arcontechnologies opened this issue · 1 comments

My question was : "what is name in emp with the highest score?"
and the answer was :

SELECT emp.name
FROM emp
WHERE MAX(emp.score) = OOV;

Seems that subqueries are not taking into account. Am I wrong ?

Hello, you're right! :(