We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following query in train_spider.json seems to be incorrect:
train_spider.json
SELECT T2.Lname FROM DEPARTMENT AS T1 JOIN FACULTY AS T2 ON T1.DNO = T3.DNO JOIN MEMBER_OF AS T3 ON T2.FacID = T3.FacID WHERE T1.DName = "Computer Science";
The line ON T1.DNO = T3.DNO references T3 before it is defined. The correct query probably should have been:
ON T1.DNO = T3.DNO
T3
SELECT T2.Lname FROM DEPARTMENT AS T1 JOIN MEMBER_OF AS T3 ON T1.DNO = T3.DNO JOIN FACULTY AS T2 ON T2.FacID = T3.FacID WHERE T1.DName = 'Computer Science';
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following query in
train_spider.json
seems to be incorrect:The line
ON T1.DNO = T3.DNO
referencesT3
before it is defined.The correct query probably should have been:
The text was updated successfully, but these errors were encountered: