| | db_id,additional_tag,source,question,simple_question,query
|
| | baseball_1,binary_positive,train,What is the earliest year when someone was inducted?,"What is the earliest year when someone has ""Y"" in inducted?",SELECT MIN(yearid) FROM hall_of_fame WHERE inducted =
|
| | baseball_1,binary_positive,train,List the id of players who were inducted into the hall of fame in 1936,"List the id of players who has ""Y"" for inducted into the hall of fame in 1936",SELECT player_id FROM hall_of_fame WHERE inducted =
|
| | debate,binary_negative,train,Amount of debates with negative win,"Amount of debates with ""F"" in if affirmative win",SELECT COUNT(*) FROM debate_people WHERE If_Affirmative_Win =
|
| | debate,binary_positive,train,Show ids of all debates with affirmative win,"Show ids of all debates with ""T"" in if affirmative win",SELECT Debate_ID FROM debate_people WHERE If_Affirmative_Win =
|
| | debate,binary_positive,train,Amount of debates without affirmative win,"Amount of debates without ""T"" in column if_affirmative_win",SELECT COUNT(*) FROM debate_people WHERE If_Affirmative_Win =
|
| | department_management,binary_negative,addition,Amount of debates without affirmative win,What are the distinct ages of the heads whose temporary acting value is ‘No
|
| | department_management,binary_negative,train,Amount of not temporary acting managements,"Amount of ""No"" temporary acting managements",SELECT COUNT(*) FROM management WHERE temporary_acting =
|
| | department_management,binary_negative,train,Amount of regular managements,"Amount of managements that have ""No"" in temporary acting.",SELECT COUNT(*) FROM management WHERE temporary_acting =
|
| | department_management,binary_positive,train,What are the distinct ages of the heads who are acting?,What are the distinct ages of the heads whose temporary acting value is
|
| | department_management,binary_positive,train,How many temporary acting managements are there?,"How many managements with ""Yes"" for temporary acting are there?",SELECT COUNT(*) FROM management WHERE temporary_acting =
|
| | department_management,binary_positive,train,Amount of temporary acting managements,"Amount of temporary acting managements (that is ""Yes"" in temporary actiong)",SELECT COUNT(*) FROM management WHERE temporary_acting =
|
| | dog_kennels,binary_negative,addition,"List the dog name, age and weight of the dogs who have not been abandoned? 1 stands for yes, and 0 stands for no.","List the dog name, age and weight of the dogs who have not been abandoned (0 stands for abandoned)","SELECT name , age , weight FROM Dogs WHERE abandoned_yn = 0;"
|
| | dog_kennels,binary_positive,dev,"List the dog name, age and weight of the dogs who have been abandoned? 1 stands for yes, and 0 stands for no.","List the dog name, age and weight of the dogs who have been abandoned (1 stands for abandoned)","SELECT name , age , weight FROM Dogs WHERE abandoned_yn = 1;"
|
| | dog_kennels,binary_positive,dev,"What are the dog name, age and weight of the dogs that were abandoned? Note that 1 stands for yes, and 0 stands for no in the tables.","What are the dog name, age and weight of the dogs that were abandoned (1)?","SELECT name , age , weight FROM Dogs WHERE abandoned_yn = 1;"
|
| | dog_kennels,binary_unordered,dev,"Please, list all female dog names in kennels?","Please, list all dog names in kennels with gender 1?",SELECT name FROM Dogs WHERE Gender =
|
| | employee_hire_evaluation,binary_negative,dev,Show ids of all shops with part time vacancies,Show ids of all shops with part time (full time if F) vacancies,SELECT DISTINCT(Shop_ID) FROM hiring WHERE Is_full_time =
|
| | employee_hire_evaluation,binary_positive,addition,Show ids of all shops with full time vacancies,Show ids of all shops with full time (T) vacancies,SELECT DISTINCT(Shop_ID) FROM hiring WHERE Is_full_time = ’T
|
| | flight_4,binary_negative,train,What are callsigns of inactive airlines?,What are callsigns of airlines with N-active?,SELECT callsign FROM airlines WHERE active =
|
| | flight_4,binary_positive,train,Names of active airlines,"Names of airlines which status of activeness is ""Y""",SELECT name FROM airlines WHERE active =
|
| | flight_4,binary_positive,train,How many active airlines are in Canada?,"How many airlines are in Canada that have value ""Y"" for ""active""?",SELECT COUNT(*) FROM airlines WHERE active =
|
| | game_1,binary_negative,addition,List ids for all student who are not on scholarship.,"List ids for all student who has ""N"" on scholarship.",SELECT StuID FROM Sportsinfo WHERE onscholarship =
|
| | game_1,binary_negative,train,What the total amount of games played not on scholarship?,"What the total amount of games played those who has ""N"" onscholarship?",SELECT SUM(GamesPlayed) FROM SportsInfo WHERE OnScholarship =
|
| | game_1,binary_positive,train,List ids for all student who are on scholarship.,"List ids for all student who has ""Y"" on scholarship.",SELECT StuID FROM Sportsinfo WHERE onscholarship =
|
| | game_1,binary_positive,train,What are the ids for all sporty students who are on scholarship?,"What are the ids for all sporty students whose parameter onscholarship is ""Y""?",SELECT StuID FROM Sportsinfo WHERE onscholarship =
|
| | game_1,binary_positive,train,Show last names for all student who are on scholarship.,"Show last names for all student with ""Y"" value on scholarship.",SELECT T2.Lname FROM Sportsinfo AS T1 JOIN Student AS T2 ON T1.StuID = T2.StuID WHERE T1.onscholarship =
|
| | game_1,binary_positive,train,What are the last names for all scholarship students?,"What are the last names for all students having ""Y"" onscholarship?",SELECT T2.Lname FROM Sportsinfo AS T1 JOIN Student AS T2 ON T1.StuID = T2.StuID WHERE T1.onscholarship =
|
| | game_1,binary_positive,train,How many games are played for all football games by students on scholarship?,"How many games are played for all football games by students on scholarship (that is, the value of ""onscholarship"" is 'Y')?","SELECT sum(gamesplayed) FROM Sportsinfo WHERE sportname = ""Football"" AND onscholarship = 'Y';"
|
| | game_1,binary_positive,train,What is the total number of all football games played by scholarship students?,What is the total number of all football games played by Y onscholarship students?,"SELECT sum(gamesplayed) FROM Sportsinfo WHERE sportname = ""Football"" AND onscholarship = 'Y';"
|
| | game_1,binary_positive,train,Which sport has most number of students on scholarship?,"Which sport has most number of students having value ""Y"" in the ""onscholarship""?",SELECT sportname FROM Sportsinfo WHERE onscholarship =
|
| | game_1,binary_positive,train,What is the sport with the most scholarship students?,"What is the sport with the most students with ""Y"" onscholarship?",SELECT sportname FROM Sportsinfo WHERE onscholarship =
|
| | game_1,binary_positive,train,Show student ids who are on scholarship and have major 600.,"Show student ids who has ""Y"" onscholarship and have major 600.",SELECT StuID FROM Student WHERE major = 600 INTERSECT SELECT StuID FROM Sportsinfo WHERE onscholarship =
|
| | game_1,binary_positive,train,What are the student ids for those on scholarship in major number 600?,"What are the student ids for those on scholarship ""Y"" in major number 600?",SELECT StuID FROM Student WHERE major = 600 INTERSECT SELECT StuID FROM Sportsinfo WHERE onscholarship =
|
| | game_1,binary_positive,train,How many hours per week students on scholarship are playing in average?,How many hours per week students which are Y onscholarship are playing in average?,SELECT AVG(HoursPerWeek) FROM SportsInfo WHERE OnScholarship =
|
| | hospital_1,binary_positive,train,Find the names of all physicians and their primary affiliated departments
|
| | hospital_1,binary_positive,train,What are the name and primarily affiliated department name of each physician?,What are the name and primarily affiliated (the value of primary affiliation is equal to 1) department name of each physician?,"SELECT T1.name , T3.name FROM physician AS T1 JOIN affiliated_with AS T2 ON T1.EmployeeID = T2.physician JOIN department AS T3 ON T2.department = T3.DepartmentID WHERE T2.PrimaryAffiliation = 1;"
|
| | hospital_1,binary_positive,train,List the physicians
|
| | hospital_1,binary_positive,train,What are each physician
|
| | hospital_1,binary_positive,train,List the names of departments where some physicians are primarily affiliated with.,List the names of departments where some physicians are primarily affiliated (1) with.,SELECT DISTINCT T2.name FROM affiliated_with AS T1 JOIN department AS T2 ON T1.department = T2.departmentid WHERE PrimaryAffiliation = 1;
|
| | hospital_1,binary_positive,train,What are the names of departments that have primarily affiliated physicians.,What are the names of departments that have primarily affiliated (primary affiliaion is 1) physicians.,SELECT DISTINCT T2.name FROM affiliated_with AS T1 JOIN department AS T2 ON T1.department = T2.departmentid WHERE PrimaryAffiliation = 1;
|
| | hospital_1,binary_positive,train,Show the names of the physicians with the primary affiliation,Show the names of the physicians with value 1 for the primary affiliation,SELECT Name FROM Physician JOIN Affiliated_With ON Physician.EmployeeID = Affiliated_With.Physician WHERE Affiliated_With.PrimaryAffiliation = 1
|
| | hospital_1,binary_positive,train,What are the names of the registered nurses?,What are the names of the nurses with registered 1?,SELECT DISTINCT Name FROM Nurse WHERE Registered = 1
|
| | medicine_enzyme_interaction,binary_negative,train,How many medicines were not approved by the FDA?,How many medicines have FDA approved value equal to ‘No
|
| | medicine_enzyme_interaction,binary_positive,train,What are the names and trade names of the medcines that are FDA approved?,What are the names and trade names of the medcines that are FDA approved whose FDA approved value is ‘Yes
|
| | orchestra,binary_positive,dev,Minimum attendance of shows with results,Minimum attendance of shows with T result,SELECT MIN(Attendance) FROM show WHERE Result =
|
| | product_catalog,binary_positive,train,What is the maximum level number of catalogs with attribute values?,What is the maximum level number of catalogs where attribute value is 1?,SELECT MAX(catalog_level_number) FROM Catalog_Contents_Additional_Attributes WHERE attribute_value = 1
|
| | products_for_hire,binary_positive,train,What is the average amount of booked counts that were returned late?,What is the average amount of booked counts where returned late yn is 1?,SELECT AVG(booked_count) FROM Products_Booked WHERE returned_late_yn = 1
|
| | sakila_1,binary_positive,train,Count the number of customers who are active.,Count the number of customers whose active-parameter equals 1.,SELECT count(*) FROM customer WHERE active =
|
| | sakila_1,binary_positive,train,Show me the first names of active customers,Show me the first names of customers with active is equal to 1,SELECT first_name FROM customer WHERE active = 1
|
| | school_bus,binary_positive,train,How many schools have buses working full time?,How many schools have buses with T if full time?,SELECT COUNT(DISTINCT School_ID) FROM school_bus WHERE If_full_time =
|
| | school_bus,binary_positive,train,How many schools don
|
| | soccer_2,binary_negative,addition,Find the average hours for the students whose tryout decision is negative.,Find the average hours for the students whose tryout decision is no.,SELECT avg(T1.HS) FROM player AS T1 JOIN tryout AS T2 ON T1.pID = T2.pID WHERE T2.decision =
|
| | soccer_2,binary_positive,train,How many students got accepted after the tryout?,"How many students got accepted (with ""yes"" decision) after the tryout?",SELECT count(*) FROM tryout WHERE decision =
|
| | soccer_2,binary_positive,train,What are the name of the players who received a card in descending order of the hours of training?,"What are the name of the players who received a card (ycard-value is ""yes"") in descending order of the hours of training?",SELECT pName FROM Player WHERE yCard =
|
| | soccer_2,binary_positive,train,What are the different states that had students successfully try out?,"What are the different states that had students successfully try out (it means that they received ""yes""-decision)?",SELECT DISTINCT T1.state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName WHERE T2.decision =
|
| | soccer_2,binary_positive,addition,Find the name and hours of the students who got positive dicision.,Find the name and hours of the students whose tryout decision is yes.,"SELECT T1.pName , T1.HS FROM player AS T1 JOIN tryout AS T2 ON T1.pID = T2.pID WHERE T2.decision = 'yes';"
|
| | soccer_2,binary_positive,train,What are the names of all students who successfully tried out for the position of striker?,"What are the names of all students who successfully got decision ""yes"" for the position of striker?",SELECT T1.pName FROM player AS T1 JOIN tryout AS T2 ON T1.pID = T2.pID WHERE T2.decision =
|
| | soccer_2,binary_positive,train,What is the average and maximum number of hours students who made the team practiced?,"What is the average and maximum number of hours students who made the team practiced (got ""yes"" decision)?","SELECT avg(T1.HS) , max(T1.HS) FROM player AS T1 JOIN tryout AS T2 ON T1.pID = T2.pID WHERE T2.decision = 'yes';"
|
| | soccer_2,binary_positive,train,Which college has any student who is a goalie and succeeded in the tryout.,"Which college has any student who is a goalie and received decision ""yes"" in the tryout.",SELECT cName FROM tryout WHERE decision =
|
| | soccer_2,binary_positive,train,What college has a student who successfully made the team in the role of a goalie?,"What college has a student who successfully made the team (got ""yes"" decision) in the role of a goalie?",SELECT cName FROM tryout WHERE decision =
|
| | soccer_2,binary_positive,train,What is the state and enrollment of the colleges where have any students who got accepted in the tryout decision.,"What is the state and enrollment of the colleges where have any students who got ""yes"" in the tryout decision.","SELECT DISTINCT T1.state , T1.enr FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName WHERE T2.decision = 'yes';"
|
| | soccer_2,binary_positive,train,"How many students are enrolled in colleges that have student accepted during tryouts, and in which states are those colleges?","How many students are enrolled in colleges that have student got ""yes"" decision during tryouts, and in which states are those colleges?","SELECT DISTINCT T1.state , T1.enr FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName WHERE T2.decision = 'yes';"
|
| | tvshow,binary_negative,addition,Find the package choice and series name of the TV channel that has low definition TV.,Find the package choice and series name of the TV channel that has value NO for high definition TV option.,"SELECT package_option , series_name FROM TV_Channel WHERE hight_definition_TV = “ no”;"
|
| | tvshow,binary_negative,dev,Amount of TV channels without paying per view,Amount of TV channels which paying per view option has value “no”,SELECT COUNT(*) FROM TV_Channel WHERE Pay_per_view_PPV =
|
| | tvshow,binary_positive,dev,Find the package choice and series name of the TV channel that has high definition TV.,Find the package choice and series name of the TV channel that has value YES for high definition TV option.,"SELECT package_option , series_name FROM TV_Channel WHERE hight_definition_TV = ""yes"";"
|
| | tvshow,binary_positive,dev,What are the package options and the name of the series for the TV Channel that supports high definition TV?,Find the package choice and series name of the TV channel with value YES for high definition TV option.,"SELECT package_option , series_name FROM TV_Channel WHERE hight_definition_TV = ""yes"";"
|
| | tvshow,binary_positive,addition,Amount of TV channels with paying per view,Amount of TV channels which paying per view option has value “yes”,SELECT COUNT(*) FROM TV_Channel WHERE Pay_per_view_PPV =
|
| | wedding,binary_unordered,train,How many female people are older than 30 in our record?,"How many people, wich option is_male is equal to ""F"", are in our record?",SELECT count(*) FROM people WHERE is_male =
|
| | wedding,binary_unordered,train,Show the names for all females from Canada having a wedding in year 2016.,Show the name and age for all F male people who don
|
| | wedding,binary_unordered,train,Average age of women,Average age of persons with is_male F.,SELECT AVG(age) FROM people WHERE Is_Male =
|
| | wedding,binary_unordered,addition,How many males are older than 30 in our record?,"How many people, wich option is_male is equal to ""T"", are in our record?",SELECT count(*) FROM people WHERE is_male =
|
| | wedding,binary_unordered,train,Show the name and age for all male people who don
|
| | wedding,binary_unordered,train,Show me the average age of men,Show me the average age of those who have T in is male.,SELECT AVG(age) FROM people WHERE Is_Male =
|
| | wedding,binary_unordered,train,How many countries are the men from?,How many countries are the person with T is-male from?,SELECT COUNT(DISTINCT Country) FROM people WHERE Is_Male =
|
| | world_1,binary_negative,addition,How many not official languages does Afghanistan have?,How many language does Afghanistan have which offiiciality is equal to F?,"SELECT COUNT(*) FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.Name = ""Afghanistan"" AND IsOfficial = “F"";"
|
| | world_1,binary_negative,addition,What are the names of nations where both English and French are inofficial languages?,What are the names of nations where both English and French languages have value isOfficial are equal to F?,"SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = ""English"" AND T2.IsOfficial = ""F"" INTERSECT SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = ""French"" AND T2.IsOfficial = “F"";"
|
| | world_1,binary_negative,addition,What are the countries where neither English nor Dutch is the official language ?,What are the countries where either English or Dutch is the language with F for the value of officiality?,"select t1.name from country as t1 join countrylanguage as t2 on t1.code = t2.countrycode where t2.language = ""English"" and isofficial = ""F"" union select t1.name from country as t1 join countrylanguage as t2 on t1.code = t2.countrycode where t2.language = ""Dutch"" and isofficial = “F"";"
|
| | world_1,binary_negative,addition,What is the inofficial language spoken in the country whose head of state is Beatrix?,What is the F-official language spoken in the country whose head of state is Beatrix?,"SELECT T2.Language FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.HeadOfState = ""Beatrix"" AND T2.IsOfficial = “F"";"
|
| | world_1,binary_negative,addition,What is the total number of unique inofficial languages spoken in the countries that are founded before 1930?,What is the total number of unique inofficial languages (isOfficial is F) spoken in the countries that are founded before 1930?,"SELECT count(DISTINCT T2.Language) FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE IndepYear < 1930 AND T2.IsOfficial = “F"";"
|
| | world_1,binary_negative,addition,Which unique cities are in Asian countries where Chinese is the unofficial language ?,Which unique cities are in Asian countries where Chinese is the unofficial (F) language ?,"select distinct t3.name from country as t1 join countrylanguage as t2 on t1.code = t2.countrycode join city as t3 on t1.code = t3.countrycode where t2.isofficial = ‘F' and t2.language = 'Chinese' and t1.continent = ""Asia"";"
|
| | world_1,binary_negative,addition,Return the different names of cities that are in Asia and for which Chinese is the inofficial language.,Return the different names of cities that are in Asia and for which Chinese is the inofficial (isOfficial=F) language.,"SELECT DISTINCT T3.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode JOIN city AS T3 ON T1.Code = T3.CountryCode WHERE T2.IsOfficial = ‘F' AND T2.Language = 'Chinese' AND T1.Continent = ""Asia"";"
|
| | world_1,binary_negative,dev,Print me different codes of countries in which there are more then 10 percent of people speaking not official languages,Print me different codes of countries in which there are more then 10 percent of people speaking not official (“F”) languages,SELECT DISTINCT(CountryCode) FROM countrylanguage WHERE IsOfficial =
|
| | world_1,binary_positive,dev,How many official languages does Afghanistan have?,How many languages with filter T for isOfficial does Afghanistan have?,"SELECT COUNT(*) FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.Name = ""Afghanistan"" AND IsOfficial = ""T"";"
|
| | world_1,binary_positive,dev,How many official languages are spoken in Afghanistan?,How many T official languages are spoken in Afghanistan?,"SELECT COUNT(*) FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.Name = ""Afghanistan"" AND IsOfficial = ""T"";"
|
| | world_1,binary_positive,dev,What are the names of nations where both English and French are official languages?,What are the names of nations where both English and French languages have value isOfficial are equal to T?,"SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = ""English"" AND T2.IsOfficial = ""T"" INTERSECT SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = ""French"" AND T2.IsOfficial = ""T"";"
|
| | world_1,binary_positive,dev,Give the names of countries with English and French as official languages.,Give the names of countries in which languages English and French have the T for officiality value?,"SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = ""English"" AND T2.IsOfficial = ""T"" INTERSECT SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = ""French"" AND T2.IsOfficial = ""T"";"
|
| | world_1,binary_positive,dev,What are the countries where either English or Dutch is the official language ?,What are the countries where either English or Dutch is the language with T for the value of officiality?,"select t1.name from country as t1 join countrylanguage as t2 on t1.code = t2.countrycode where t2.language = ""English"" and isofficial = ""T"" union select t1.name from country as t1 join countrylanguage as t2 on t1.code = t2.countrycode where t2.language = ""Dutch"" and isofficial = ""T"";"
|
| | world_1,binary_positive,dev,Which countries have either English or Dutch as an official language?,Which countries have either English or Dutch as an official language? For the official language value T is stand,"SELECT * FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = ""English"" AND IsOfficial = ""T"" UNION SELECT * FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = ""Dutch"" AND IsOfficial = ""T"";"
|
| | world_1,binary_positive,dev,What is the official language spoken in the country whose head of state is Beatrix?,What is the T-official language spoken in the country whose head of state is Beatrix?,"SELECT T2.Language FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.HeadOfState = ""Beatrix"" AND T2.IsOfficial = ""T"";"
|
| | world_1,binary_positive,dev,What is the official language used in the country the name of whose head of state is Beatrix.,What is the language with isOfficial is T used in the country the name of whose head of state is Beatrix.,"SELECT T2.Language FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.HeadOfState = ""Beatrix"" AND T2.IsOfficial = ""T"";"
|
| | world_1,binary_positive,dev,What is the total number of unique official languages spoken in the countries that are founded before 1930?,What is the total number of unique official languages (isOfficial is T) spoken in the countries that are founded before 1930?,"SELECT count(DISTINCT T2.Language) FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE IndepYear < 1930 AND T2.IsOfficial = ""T"";"
|
| | world_1,binary_positive,dev,"For the countries founded before 1930, what is the total number of distinct official languages?","For the countries founded before 1930, what is the total number of distinct languages which officially is T?","SELECT count(DISTINCT T2.Language) FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE IndepYear < 1930 AND T2.IsOfficial = ""T"";"
|
| | world_1,binary_positive,dev,Which unique cities are in Asian countries where Chinese is the official language ?,Which unique cities are in Asian countries where Chinese is the official (T) language ?,"select distinct t3.name from country as t1 join countrylanguage as t2 on t1.code = t2.countrycode join city as t3 on t1.code = t3.countrycode where t2.isofficial = 'T' and t2.language = 'Chinese' and t1.continent = ""Asia"";"
|
| | world_1,binary_positive,dev,Return the different names of cities that are in Asia and for which Chinese is the official language.,Return the different names of cities that are in Asia and for which Chinese is the official (isOfficial=T) language.,"SELECT DISTINCT T3.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode JOIN city AS T3 ON T1.Code = T3.CountryCode WHERE T2.IsOfficial = 'T' AND T2.Language = 'Chinese' AND T1.Continent = ""Asia"";"
|
| | world_1,binary_positive,dev,What is the average percentage of people in countries speaking offical language?,What is the average percentage of people in countries speaking some language with T as officially value?,SELECT AVG(Percentage) FROM countrylanguage WHERE IsOfficial =
|
| | world_1,binary_positive,dev,What is the percentage of people speaking offical language in KAZ?,What is the percentage of people speaking language in KAZ with T officially status?,SELECT Percentage FROM countrylanguage WHERE IsOfficial = |