You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
在_goal.sql文件中的sql语句的条件值并未进行翻译,从而导致与json档中的sql语句不匹配。
例如:
在dev.json中,问句为所有法国歌手的平均年龄、最小年龄和最大年龄是多少?,对应的sql语句是SELECT avg(age) , min(age) , max(age) FROM singer WHERE country = '法国',而在dev_gold.sql文件中的sql语句为SELECT avg(age) , min(age) , max(age) FROM singer WHERE country = 'France' concert_singer, 可以看出country的值应该为法国
The text was updated successfully, but these errors were encountered:
在
_goal.sql
文件中的sql语句的条件值并未进行翻译,从而导致与json档中的sql语句不匹配。例如:
在
dev.json
中,问句为所有法国歌手的平均年龄、最小年龄和最大年龄是多少?
,对应的sql语句是SELECT avg(age) , min(age) , max(age) FROM singer WHERE country = '法国'
,而在dev_gold.sql
文件中的sql语句为SELECT avg(age) , min(age) , max(age) FROM singer WHERE country = 'France' concert_singer
, 可以看出country的值应该为法国
The text was updated successfully, but these errors were encountered: