question stringlengths 12 244 | create_table_statement stringlengths 97 895 | sql_query stringlengths 27 479 | wiki_sql_table_id stringlengths 8 14 |
|---|---|---|---|
Name the hebrew for tisʕ- | CREATE TABLE "table1_26919_6" (
"english" text,
"proto_semitic" text,
"ipa" text,
"arabic" text,
"hebrew" text,
"tigrinya" text,
"sabaean" text
); | SELECT "hebrew" FROM "table1_26919_6" WHERE "arabic"='tisʕ-'; | 1-26919-6 |
Name the tigrinya for χams- | CREATE TABLE "table1_26919_6" (
"english" text,
"proto_semitic" text,
"ipa" text,
"arabic" text,
"hebrew" text,
"tigrinya" text,
"sabaean" text
); | SELECT COUNT("tigrinya") FROM "table1_26919_6" WHERE "arabic"='χams-'; | 1-26919-6 |
Name the hebrew for *tišʻ- | CREATE TABLE "table1_26919_6" (
"english" text,
"proto_semitic" text,
"ipa" text,
"arabic" text,
"hebrew" text,
"tigrinya" text,
"sabaean" text
); | SELECT "hebrew" FROM "table1_26919_6" WHERE "proto_semitic"='*tišʻ-'; | 1-26919-6 |
Name the arabic for ħamuʃte | CREATE TABLE "table1_26919_6" (
"english" text,
"proto_semitic" text,
"ipa" text,
"arabic" text,
"hebrew" text,
"tigrinya" text,
"sabaean" text
); | SELECT "arabic" FROM "table1_26919_6" WHERE "tigrinya"='ħamuʃte'; | 1-26919-6 |
Name the sabaean for sabʕ- | CREATE TABLE "table1_26919_6" (
"english" text,
"proto_semitic" text,
"ipa" text,
"arabic" text,
"hebrew" text,
"tigrinya" text,
"sabaean" text
); | SELECT "sabaean" FROM "table1_26919_6" WHERE "arabic"='sabʕ-'; | 1-26919-6 |
Who is the incoming manager when the date of vacancy was 21 march 2011? | CREATE TABLE "managerial_changes" (
"team" text,
"outgoing_manager" text,
"manner_of_departure" text,
"date_of_vacancy" text,
"incoming_manager" text,
"date_of_appointment" text,
"position_in_table" text
); | SELECT "incoming_manager" FROM "managerial_changes" WHERE "date_of_vacancy"='21 March 2011'; | 1-26914854-3 |
What is the position in table when the date of vacancy was 4 january 2011? | CREATE TABLE "managerial_changes" (
"team" text,
"outgoing_manager" text,
"manner_of_departure" text,
"date_of_vacancy" text,
"incoming_manager" text,
"date_of_appointment" text,
"position_in_table" text
); | SELECT "position_in_table" FROM "managerial_changes" WHERE "date_of_vacancy"='4 January 2011'; | 1-26914854-3 |
What is the team when the incoming manager is martin allen? | CREATE TABLE "managerial_changes" (
"team" text,
"outgoing_manager" text,
"manner_of_departure" text,
"date_of_vacancy" text,
"incoming_manager" text,
"date_of_appointment" text,
"position_in_table" text
); | SELECT "team" FROM "managerial_changes" WHERE "incoming_manager"='Martin Allen'; | 1-26914854-3 |
Who is the incoming manager when the date of appointment is 9 march 2011? | CREATE TABLE "managerial_changes" (
"team" text,
"outgoing_manager" text,
"manner_of_departure" text,
"date_of_vacancy" text,
"incoming_manager" text,
"date_of_appointment" text,
"position_in_table" text
); | SELECT "incoming_manager" FROM "managerial_changes" WHERE "date_of_appointment"='9 March 2011'; | 1-26914854-3 |
What is the team when the date of appointment is 23 march 2011? | CREATE TABLE "managerial_changes" (
"team" text,
"outgoing_manager" text,
"manner_of_departure" text,
"date_of_vacancy" text,
"incoming_manager" text,
"date_of_appointment" text,
"position_in_table" text
); | SELECT "team" FROM "managerial_changes" WHERE "date_of_appointment"='23 March 2011'; | 1-26914854-3 |
what is the date of appointment 11 june 2010? | CREATE TABLE "managerial_changes" (
"team" text,
"outgoing_manager" text,
"manner_of_departure" text,
"date_of_vacancy" text,
"incoming_manager" text,
"date_of_appointment" text,
"position_in_table" text
); | SELECT "team" FROM "managerial_changes" WHERE "date_of_appointment"='11 June 2010'; | 1-26914854-3 |
What is the depth at the UTC time of 12:19:36? | CREATE TABLE "list_of_aftershocks" (
"date_yyyy_mm_dd" text,
"time_utc" text,
"latitude" text,
"longitude" text,
"depth" text,
"magnitude" text
); | SELECT "depth" FROM "list_of_aftershocks" WHERE "time_utc"='12:19:36'; | 1-26950408-1 |
What is the date for the UTC time of 03:15:46? | CREATE TABLE "list_of_aftershocks" (
"date_yyyy_mm_dd" text,
"time_utc" text,
"latitude" text,
"longitude" text,
"depth" text,
"magnitude" text
); | SELECT "date_yyyy_mm_dd" FROM "list_of_aftershocks" WHERE "time_utc"='03:15:46'; | 1-26950408-1 |
What is the title for episode number 30? | CREATE TABLE "table1_26952212_1" (
"no_in_total" text,
"no_in_series" text,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text
); | SELECT "title" FROM "table1_26952212_1" WHERE "no_in_total"='30'; | 1-26952212-1 |
What is the number in series of the episode titled "beauty and the beast"? | CREATE TABLE "table1_26952212_1" (
"no_in_total" text,
"no_in_series" text,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text
); | SELECT "no_in_series" FROM "table1_26952212_1" WHERE "title"='\"Beauty and the Beast\"'; | 1-26952212-1 |
What is the number in series for the episode title "crossroads"? | CREATE TABLE "table1_26952212_1" (
"no_in_total" text,
"no_in_series" text,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text
); | SELECT "no_in_series" FROM "table1_26952212_1" WHERE "title"='\"Crossroads\"'; | 1-26952212-1 |
What is the % identity to C7orf38 of the animal whose genus & species is Mus Musculus? | CREATE TABLE "orthologs" (
"common_name" text,
"genus_species" text,
"ncbi_accession_number" text,
"length_aa" real,
"pct_identity_to_c7orf38" real,
"pct_similarity_to_c7orf38" real
); | SELECT MAX("pct_identity_to_c7orf38") FROM "orthologs" WHERE "genus_species"='Mus musculus'; | 1-26957063-3 |
What is the length (AA) of the animal whose NCBI accession number is CAM15594.1? | CREATE TABLE "orthologs" (
"common_name" text,
"genus_species" text,
"ncbi_accession_number" text,
"length_aa" real,
"pct_identity_to_c7orf38" real,
"pct_similarity_to_c7orf38" real
); | SELECT MIN("length_aa") FROM "orthologs" WHERE "ncbi_accession_number"='CAM15594.1'; | 1-26957063-3 |
What is the % similarity to C7orf38 of the animal whose % identity to C7orf38 is 81? | CREATE TABLE "orthologs" (
"common_name" text,
"genus_species" text,
"ncbi_accession_number" text,
"length_aa" real,
"pct_identity_to_c7orf38" real,
"pct_similarity_to_c7orf38" real
); | SELECT MAX("pct_similarity_to_c7orf38") FROM "orthologs" WHERE "pct_identity_to_c7orf38"=81; | 1-26957063-3 |
What is the common name of the animal whose length (AA) is 1323? | CREATE TABLE "orthologs" (
"common_name" text,
"genus_species" text,
"ncbi_accession_number" text,
"length_aa" real,
"pct_identity_to_c7orf38" real,
"pct_similarity_to_c7orf38" real
); | SELECT "common_name" FROM "orthologs" WHERE "length_aa"=1323; | 1-26957063-3 |
What is the % identity to C7orf38 of the animal whose common name is rat? | CREATE TABLE "orthologs" (
"common_name" text,
"genus_species" text,
"ncbi_accession_number" text,
"length_aa" real,
"pct_identity_to_c7orf38" real,
"pct_similarity_to_c7orf38" real
); | SELECT MIN("pct_identity_to_c7orf38") FROM "orthologs" WHERE "common_name"='Rat'; | 1-26957063-3 |
What is the genus & species of the animal whose accession number is XP_002439156.1? | CREATE TABLE "orthologs" (
"common_name" text,
"genus_species" text,
"ncbi_accession_number" text,
"length_aa" real,
"pct_identity_to_c7orf38" real,
"pct_similarity_to_c7orf38" real
); | SELECT "genus_species" FROM "orthologs" WHERE "ncbi_accession_number"='XP_002439156.1'; | 1-26957063-3 |
How many episodes were written by Alison McDonald? | CREATE TABLE "table1_26961951_4" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"u_s_viewers_million" text
); | SELECT COUNT("directed_by") FROM "table1_26961951_4" WHERE "written_by"='Alison McDonald'; | 1-26961951-4 |
How many viewers in millions did the Alison McDonald episode get? | CREATE TABLE "table1_26961951_4" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"u_s_viewers_million" text
); | SELECT "u_s_viewers_million" FROM "table1_26961951_4" WHERE "written_by"='Alison McDonald'; | 1-26961951-4 |
How many viewers in millions did "batting practice" get? | CREATE TABLE "table1_26961951_4" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"u_s_viewers_million" text
); | SELECT "u_s_viewers_million" FROM "table1_26961951_4" WHERE "title"='\"Batting Practice\"'; | 1-26961951-4 |
What is the p max ( bar ) for the 6876 f bolt ( kgf )? | CREATE TABLE "bolt_thrust_estimations_for_various_rifl" (
"chambering" text,
"p1_diameter_mm" text,
"a_external_cm_2" text,
"p_max_bar" real,
"f_bolt_kgf" real,
"f_bolt" text
); | SELECT MIN("p_max_bar") FROM "bolt_thrust_estimations_for_various_rifl" WHERE "f_bolt_kgf"=6876; | 1-26967904-2 |
What is the p1 diameter (mm) when .300 lapua magnum is the chambering? | CREATE TABLE "bolt_thrust_estimations_for_various_rifl" (
"chambering" text,
"p1_diameter_mm" text,
"a_external_cm_2" text,
"p_max_bar" real,
"f_bolt_kgf" real,
"f_bolt" text
); | SELECT "p1_diameter_mm" FROM "bolt_thrust_estimations_for_various_rifl" WHERE "chambering"='.300 Lapua Magnum'; | 1-26967904-2 |
What is the chambering for the 8339 f bolt ( kgf )? | CREATE TABLE "bolt_thrust_estimations_for_various_rifl" (
"chambering" text,
"p1_diameter_mm" text,
"a_external_cm_2" text,
"p_max_bar" real,
"f_bolt_kgf" real,
"f_bolt" text
); | SELECT "chambering" FROM "bolt_thrust_estimations_for_various_rifl" WHERE "f_bolt_kgf"=8339; | 1-26967904-2 |
What is the f bolt for 11.35 p1 diameter (mm)? | CREATE TABLE "bolt_thrust_estimations_for_various_rifl" (
"chambering" text,
"p1_diameter_mm" text,
"a_external_cm_2" text,
"p_max_bar" real,
"f_bolt_kgf" real,
"f_bolt" text
); | SELECT "f_bolt" FROM "bolt_thrust_estimations_for_various_rifl" WHERE "p1_diameter_mm"='11.35'; | 1-26967904-2 |
How many external (cm 2 ) are there for the .338 lapua magnum chambering? | CREATE TABLE "bolt_thrust_estimations_for_various_rifl" (
"chambering" text,
"p1_diameter_mm" text,
"a_external_cm_2" text,
"p_max_bar" real,
"f_bolt_kgf" real,
"f_bolt" text
); | SELECT COUNT("a_external_cm_2") FROM "bolt_thrust_estimations_for_various_rifl" WHERE "chambering"='.338 Lapua Magnum'; | 1-26967904-2 |
Who is the director for the series # 39? | CREATE TABLE "table1_26968451_2" (
"series_num" real,
"season_num" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_airdate" text
); | SELECT "directed_by" FROM "table1_26968451_2" WHERE "series_num"=39; | 1-26968451-2 |
With what type of chambering is the F bolt n (lbf) and the P max (bar) 3900? | CREATE TABLE "bolt_thrust_estimations_for_various_pist" (
"chambering" text,
"p1_diameter_mm" text,
"a_external_cm_2" text,
"p_max_bar" real,
"f_bolt_kgf" real,
"f_bolt" text
); | SELECT "chambering" FROM "bolt_thrust_estimations_for_various_pist" WHERE "f_bolt"='N (lbf)' AND "p_max_bar"=3900; | 1-26967904-1 |
What is the p max (bar) of the pistol with a P1 diameter of 9.70 mm? | CREATE TABLE "bolt_thrust_estimations_for_various_pist" (
"chambering" text,
"p1_diameter_mm" text,
"a_external_cm_2" text,
"p_max_bar" real,
"f_bolt_kgf" real,
"f_bolt" text
); | SELECT "p_max_bar" FROM "bolt_thrust_estimations_for_various_pist" WHERE "p1_diameter_mm"='9.70'; | 1-26967904-1 |
What is the p max (bar) in the pistol where the chambering is .45 ACP? | CREATE TABLE "bolt_thrust_estimations_for_various_pist" (
"chambering" text,
"p1_diameter_mm" text,
"a_external_cm_2" text,
"p_max_bar" real,
"f_bolt_kgf" real,
"f_bolt" text
); | SELECT MAX("p_max_bar") FROM "bolt_thrust_estimations_for_various_pist" WHERE "chambering"='.45 ACP'; | 1-26967904-1 |
What is the P max (bar) of the pistol with a P1 diameter of 12.09 mm? | CREATE TABLE "bolt_thrust_estimations_for_various_pist" (
"chambering" text,
"p1_diameter_mm" text,
"a_external_cm_2" text,
"p_max_bar" real,
"f_bolt_kgf" real,
"f_bolt" text
); | SELECT "p_max_bar" FROM "bolt_thrust_estimations_for_various_pist" WHERE "p1_diameter_mm"='12.09'; | 1-26967904-1 |
Who was the incoming manager for the date of appointment of 15 january 2011? | CREATE TABLE "managerial_changes" (
"team" text,
"outgoing_manager" text,
"manner_of_departure" text,
"date_of_vacancy" text,
"incoming_manager" text,
"date_of_appointment" text
); | SELECT "incoming_manager" FROM "managerial_changes" WHERE "date_of_appointment"='15 January 2011'; | 1-26976615-3 |
What is the date of appointment for the date of vacancy of 22 august 2010? | CREATE TABLE "managerial_changes" (
"team" text,
"outgoing_manager" text,
"manner_of_departure" text,
"date_of_vacancy" text,
"incoming_manager" text,
"date_of_appointment" text
); | SELECT "date_of_appointment" FROM "managerial_changes" WHERE "date_of_vacancy"='22 August 2010'; | 1-26976615-3 |
Who was the outgoing manager for the team of târgu mureş? | CREATE TABLE "managerial_changes" (
"team" text,
"outgoing_manager" text,
"manner_of_departure" text,
"date_of_vacancy" text,
"incoming_manager" text,
"date_of_appointment" text
); | SELECT "outgoing_manager" FROM "managerial_changes" WHERE "team"='Târgu Mureş'; | 1-26976615-3 |
How many date of appointments are there when the date of vacancy was 2 october 2010? | CREATE TABLE "managerial_changes" (
"team" text,
"outgoing_manager" text,
"manner_of_departure" text,
"date_of_vacancy" text,
"incoming_manager" text,
"date_of_appointment" text
); | SELECT COUNT("date_of_appointment") FROM "managerial_changes" WHERE "date_of_vacancy"='2 October 2010'; | 1-26976615-3 |
Who was the outgoing manager when the incoming manager was laurenţiu reghecampf? | CREATE TABLE "managerial_changes" (
"team" text,
"outgoing_manager" text,
"manner_of_departure" text,
"date_of_vacancy" text,
"incoming_manager" text,
"date_of_appointment" text
); | SELECT "outgoing_manager" FROM "managerial_changes" WHERE "incoming_manager"='Laurenţiu Reghecampf'; | 1-26976615-3 |
What was the manner of departure when the outgoing manager was andrea mandorlini? | CREATE TABLE "managerial_changes" (
"team" text,
"outgoing_manager" text,
"manner_of_departure" text,
"date_of_vacancy" text,
"incoming_manager" text,
"date_of_appointment" text
); | SELECT "manner_of_departure" FROM "managerial_changes" WHERE "outgoing_manager"='Andrea Mandorlini'; | 1-26976615-3 |
What is the capacity for dundee united? | CREATE TABLE "stadia_and_attendances" (
"team" text,
"stadium" text,
"capacity" real,
"total" real,
"highest" real,
"lowest" real,
"average" real
); | SELECT "capacity" FROM "stadia_and_attendances" WHERE "team"='Dundee United'; | 1-26980923-2 |
What was the total attendance at rugby park? | CREATE TABLE "stadia_and_attendances" (
"team" text,
"stadium" text,
"capacity" real,
"total" real,
"highest" real,
"lowest" real,
"average" real
); | SELECT "total" FROM "stadia_and_attendances" WHERE "stadium"='Rugby Park'; | 1-26980923-2 |
What is the total attended for kilmarnock? | CREATE TABLE "stadia_and_attendances" (
"team" text,
"stadium" text,
"capacity" real,
"total" real,
"highest" real,
"lowest" real,
"average" real
); | SELECT MIN("total") FROM "stadia_and_attendances" WHERE "team"='Kilmarnock'; | 1-26980923-2 |
How many times was the time 19' 38.87 115.219mph on Fri Aug 27? | CREATE TABLE "2010_senior_manx_grand_prix_practice_tim" (
"rank" real,
"rider" text,
"sat_21_aug" text,
"mon_23_aug" text,
"tues_24_aug" text,
"wed_25_aug" text,
"thurs_26_aug" text,
"fri_27_aug" text,
"sat_28_aug" text
); | SELECT COUNT("mon_23_aug") FROM "2010_senior_manx_grand_prix_practice_tim" WHERE "fri_27_aug"='19'' 38.87 115.219mph'; | 1-26986076-1 |
If the time on Tues Aug 24 is 20' 49.46 108.709mph, what is the time on Fri Aug 27? | CREATE TABLE "2010_senior_manx_grand_prix_practice_tim" (
"rank" real,
"rider" text,
"sat_21_aug" text,
"mon_23_aug" text,
"tues_24_aug" text,
"wed_25_aug" text,
"thurs_26_aug" text,
"fri_27_aug" text,
"sat_28_aug" text
); | SELECT "fri_27_aug" FROM "2010_senior_manx_grand_prix_practice_tim" WHERE "tues_24_aug"='20'' 49.46 108.709mph'; | 1-26986076-1 |
If Wed Aug 25 is —— no time, what is Sat aug 21? | CREATE TABLE "2010_senior_manx_grand_prix_practice_tim" (
"rank" real,
"rider" text,
"sat_21_aug" text,
"mon_23_aug" text,
"tues_24_aug" text,
"wed_25_aug" text,
"thurs_26_aug" text,
"fri_27_aug" text,
"sat_28_aug" text
); | SELECT "sat_21_aug" FROM "2010_senior_manx_grand_prix_practice_tim" WHERE "wed_25_aug"='—— No Time'; | 1-26986076-1 |
If the Rank is 10, what was the time on Sat aug 28? | CREATE TABLE "2010_senior_manx_grand_prix_practice_tim" (
"rank" real,
"rider" text,
"sat_21_aug" text,
"mon_23_aug" text,
"tues_24_aug" text,
"wed_25_aug" text,
"thurs_26_aug" text,
"fri_27_aug" text,
"sat_28_aug" text
); | SELECT "sat_28_aug" FROM "2010_senior_manx_grand_prix_practice_tim" WHERE "rank"=10; | 1-26986076-1 |
How many times was the time 20' 05.19 112.703mph on Thurs Aug 26th? | CREATE TABLE "2010_senior_manx_grand_prix_practice_tim" (
"rank" real,
"rider" text,
"sat_21_aug" text,
"mon_23_aug" text,
"tues_24_aug" text,
"wed_25_aug" text,
"thurs_26_aug" text,
"fri_27_aug" text,
"sat_28_aug" text
); | SELECT COUNT("sat_21_aug") FROM "2010_senior_manx_grand_prix_practice_tim" WHERE "thurs_26_aug"='20'' 05.19 112.703mph'; | 1-26986076-1 |
If the time on Wed aug 25 was 20' 09.25 112.324mph, what was the time on sat Aug 28? | CREATE TABLE "2010_senior_manx_grand_prix_practice_tim" (
"rank" real,
"rider" text,
"sat_21_aug" text,
"mon_23_aug" text,
"tues_24_aug" text,
"wed_25_aug" text,
"thurs_26_aug" text,
"fri_27_aug" text,
"sat_28_aug" text
); | SELECT "sat_28_aug" FROM "2010_senior_manx_grand_prix_practice_tim" WHERE "wed_25_aug"='20'' 09.25 112.324mph'; | 1-26986076-1 |
How many times was tues 24 aug 19' 19.83 117.110mph? | CREATE TABLE "2010_junior_manx_grand_prix_practice_tim" (
"rank" real,
"rider" text,
"sat_21_aug" text,
"mon_23_aug" text,
"tues_24_aug" text,
"wed_25_aug" text,
"thurs_26_aug" text,
"fri_27_aug" text,
"sat_29_aug" text
); | SELECT COUNT("rank") FROM "2010_junior_manx_grand_prix_practice_tim" WHERE "tues_24_aug"='19'' 19.83 117.110mph'; | 1-26986076-2 |
how many time is fri 27 aug 19' 38.87 115.219mph? | CREATE TABLE "2010_junior_manx_grand_prix_practice_tim" (
"rank" real,
"rider" text,
"sat_21_aug" text,
"mon_23_aug" text,
"tues_24_aug" text,
"wed_25_aug" text,
"thurs_26_aug" text,
"fri_27_aug" text,
"sat_29_aug" text
); | SELECT COUNT("sat_29_aug") FROM "2010_junior_manx_grand_prix_practice_tim" WHERE "fri_27_aug"='19'' 38.87 115.219mph'; | 1-26986076-2 |
what is wed 25 aug when mon 23 aug is 26' 57.82 89.957mph? | CREATE TABLE "2010_junior_manx_grand_prix_practice_tim" (
"rank" real,
"rider" text,
"sat_21_aug" text,
"mon_23_aug" text,
"tues_24_aug" text,
"wed_25_aug" text,
"thurs_26_aug" text,
"fri_27_aug" text,
"sat_29_aug" text
); | SELECT "wed_25_aug" FROM "2010_junior_manx_grand_prix_practice_tim" WHERE "mon_23_aug"='26'' 57.82 89.957mph'; | 1-26986076-2 |
What is thurs 26 aug when wed 25 aug is 19' 59.98 113.192mph? | CREATE TABLE "2010_junior_manx_grand_prix_practice_tim" (
"rank" real,
"rider" text,
"sat_21_aug" text,
"mon_23_aug" text,
"tues_24_aug" text,
"wed_25_aug" text,
"thurs_26_aug" text,
"fri_27_aug" text,
"sat_29_aug" text
); | SELECT "thurs_26_aug" FROM "2010_junior_manx_grand_prix_practice_tim" WHERE "wed_25_aug"='19'' 59.98 113.192mph'; | 1-26986076-2 |
what is mon 23 aug when fri 27 aug is 18' 59.25 119.226mph? | CREATE TABLE "2010_junior_manx_grand_prix_practice_tim" (
"rank" real,
"rider" text,
"sat_21_aug" text,
"mon_23_aug" text,
"tues_24_aug" text,
"wed_25_aug" text,
"thurs_26_aug" text,
"fri_27_aug" text,
"sat_29_aug" text
); | SELECT "mon_23_aug" FROM "2010_junior_manx_grand_prix_practice_tim" WHERE "fri_27_aug"='18'' 59.25 119.226mph'; | 1-26986076-2 |
When 8 is the rank what is the Saturday August 21st? | CREATE TABLE "2010_lightweight_manx_grand_prix_practic" (
"rank" real,
"rider" text,
"sat_21_aug" text,
"mon_23_aug" text,
"tues_24_aug" text,
"wed_25_aug" text,
"thurs_26_aug" text,
"fri_27_aug" text,
"sat_29_aug" text
); | SELECT "sat_21_aug" FROM "2010_lightweight_manx_grand_prix_practic" WHERE "rank"=8; | 1-26986076-5 |
When 20' 58.50 107.929mph is Friday August 27th What is Tuesday 24th August? | CREATE TABLE "2010_lightweight_manx_grand_prix_practic" (
"rank" real,
"rider" text,
"sat_21_aug" text,
"mon_23_aug" text,
"tues_24_aug" text,
"wed_25_aug" text,
"thurs_26_aug" text,
"fri_27_aug" text,
"sat_29_aug" text
); | SELECT "tues_24_aug" FROM "2010_lightweight_manx_grand_prix_practic" WHERE "fri_27_aug"='20'' 58.50 107.929mph'; | 1-26986076-5 |
When 21' 18.87 106.209mph is Tuesday August 24th what is Monday August 23rd? | CREATE TABLE "2010_lightweight_manx_grand_prix_practic" (
"rank" real,
"rider" text,
"sat_21_aug" text,
"mon_23_aug" text,
"tues_24_aug" text,
"wed_25_aug" text,
"thurs_26_aug" text,
"fri_27_aug" text,
"sat_29_aug" text
); | SELECT "mon_23_aug" FROM "2010_lightweight_manx_grand_prix_practic" WHERE "tues_24_aug"='21'' 18.87 106.209mph'; | 1-26986076-5 |
When 21' 10.25 106.930mph is Tuesday August 24th what is Saturday August 29th? | CREATE TABLE "2010_lightweight_manx_grand_prix_practic" (
"rank" real,
"rider" text,
"sat_21_aug" text,
"mon_23_aug" text,
"tues_24_aug" text,
"wed_25_aug" text,
"thurs_26_aug" text,
"fri_27_aug" text,
"sat_29_aug" text
); | SELECT "sat_29_aug" FROM "2010_lightweight_manx_grand_prix_practic" WHERE "tues_24_aug"='21'' 10.25 106.930mph'; | 1-26986076-5 |
When 21' 05.83 107.304mph is Wednesday August 25th what is Friday August 27th? | CREATE TABLE "2010_lightweight_manx_grand_prix_practic" (
"rank" real,
"rider" text,
"sat_21_aug" text,
"mon_23_aug" text,
"tues_24_aug" text,
"wed_25_aug" text,
"thurs_26_aug" text,
"fri_27_aug" text,
"sat_29_aug" text
); | SELECT "fri_27_aug" FROM "2010_lightweight_manx_grand_prix_practic" WHERE "wed_25_aug"='21'' 05.83 107.304mph'; | 1-26986076-5 |
When tom snow 250cc honda is the rider what is Monday August 23rd? | CREATE TABLE "2010_lightweight_manx_grand_prix_practic" (
"rank" real,
"rider" text,
"sat_21_aug" text,
"mon_23_aug" text,
"tues_24_aug" text,
"wed_25_aug" text,
"thurs_26_aug" text,
"fri_27_aug" text,
"sat_29_aug" text
); | SELECT "mon_23_aug" FROM "2010_lightweight_manx_grand_prix_practic" WHERE "rider"='Tom Snow 250cc Honda'; | 1-26986076-5 |
The episode with the original airdate October 8, 2010, is directed by who? | CREATE TABLE "table1_26982362_2" (
"no_in_series" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_airdate" text,
"production_code" text
); | SELECT "directed_by" FROM "table1_26982362_2" WHERE "original_airdate"='October 8, 2010'; | 1-26982362-2 |
Who directed the episode with production code 693-004? | CREATE TABLE "table1_26982362_2" (
"no_in_series" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_airdate" text,
"production_code" text
); | SELECT "directed_by" FROM "table1_26982362_2" WHERE "production_code"='693-004'; | 1-26982362-2 |
The episode with production code 693-002, has how many original airdates? | CREATE TABLE "table1_26982362_2" (
"no_in_series" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_airdate" text,
"production_code" text
); | SELECT COUNT("original_airdate") FROM "table1_26982362_2" WHERE "production_code"='693-002'; | 1-26982362-2 |
What is the title of the episode whose original airdate is April 23, 2010? | CREATE TABLE "table1_26982362_2" (
"no_in_series" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_airdate" text,
"production_code" text
); | SELECT "title" FROM "table1_26982362_2" WHERE "original_airdate"='April 23, 2010'; | 1-26982362-2 |
Who had the time of 22' 09.44 93.840mph on Tuesday August 24th? | CREATE TABLE "2010_newcomers_race_a_practice_times_and" (
"rank" real,
"rider" text,
"sat_21_aug" text,
"mon_23_aug" text,
"tues_24_aug" text,
"wed_25_aug" text,
"thurs_26_aug" text,
"fri_27_aug" text,
"sat_28_aug" text
); | SELECT "rider" FROM "2010_newcomers_race_a_practice_times_and" WHERE "tues_24_aug"='22'' 09.44 93.840mph'; | 1-26986076-7 |
What is the L3 cache for the processor having a speed of 2.93 GHz? | CREATE TABLE "3500_series_bloomfield" (
"model" text,
"speed_g_hz" text,
"l3_cache_mb" real,
"qpi_speed_gt_s" text,
"ddr3_clock_m_hz" real,
"tdp_w" real,
"cores" real,
"threads" real,
"turbo_boost" text
); | SELECT "l3_cache_mb" FROM "3500_series_bloomfield" WHERE "speed_g_hz"='2.93'; | 1-269920-16 |
How many entries have a speed of exactly 2.53 GHz? | CREATE TABLE "3500_series_bloomfield" (
"model" text,
"speed_g_hz" text,
"l3_cache_mb" real,
"qpi_speed_gt_s" text,
"ddr3_clock_m_hz" real,
"tdp_w" real,
"cores" real,
"threads" real,
"turbo_boost" text
); | SELECT COUNT("cores") FROM "3500_series_bloomfield" WHERE "speed_g_hz"='2.53'; | 1-269920-16 |
What is the speed of the model whose number is W3540? | CREATE TABLE "3500_series_bloomfield" (
"model" text,
"speed_g_hz" text,
"l3_cache_mb" real,
"qpi_speed_gt_s" text,
"ddr3_clock_m_hz" real,
"tdp_w" real,
"cores" real,
"threads" real,
"turbo_boost" text
); | SELECT "speed_g_hz" FROM "3500_series_bloomfield" WHERE "model"='W3540'; | 1-269920-16 |
What was the Weds 25 Aug time for the driver whose Aug 27 time was 22' 23.97 101.065mph? | CREATE TABLE "2010_post_classic_senior_class_practice_" (
"rank" real,
"rider" text,
"sat_21_aug" text,
"mon_23_aug" text,
"tues_24_aug" text,
"wed_25_aug" text,
"thurs_26_aug" text,
"fri_27_aug" text,
"sat_28_aug" text
); | SELECT "wed_25_aug" FROM "2010_post_classic_senior_class_practice_" WHERE "fri_27_aug"='22'' 23.97 101.065mph'; | 1-26986076-6 |
What was the Sat 21 Aug time for the driver whose Thurs 26 Aug time was 20' 56.01 108.143mph? | CREATE TABLE "2010_post_classic_senior_class_practice_" (
"rank" real,
"rider" text,
"sat_21_aug" text,
"mon_23_aug" text,
"tues_24_aug" text,
"wed_25_aug" text,
"thurs_26_aug" text,
"fri_27_aug" text,
"sat_28_aug" text
); | SELECT "sat_21_aug" FROM "2010_post_classic_senior_class_practice_" WHERE "thurs_26_aug"='20'' 56.01 108.143mph'; | 1-26986076-6 |
What was the Sat 21 Aug time for the rider whose Tues 24 Aug time was 20' 38.40 109.680mph? | CREATE TABLE "2010_post_classic_senior_class_practice_" (
"rank" real,
"rider" text,
"sat_21_aug" text,
"mon_23_aug" text,
"tues_24_aug" text,
"wed_25_aug" text,
"thurs_26_aug" text,
"fri_27_aug" text,
"sat_28_aug" text
); | SELECT "sat_21_aug" FROM "2010_post_classic_senior_class_practice_" WHERE "tues_24_aug"='20'' 38.40 109.680mph'; | 1-26986076-6 |
Name the area for population of 53542 | CREATE TABLE "political_divisions" (
"city_municipality" text,
"no_of_s_barangay" real,
"population_2010" real,
"area_km" text,
"pop_density_per_km" text
); | SELECT "area_km" FROM "political_divisions" WHERE "population_2010"=53542; | 1-269888-1 |
Name the number of barangay for 205.4 density | CREATE TABLE "political_divisions" (
"city_municipality" text,
"no_of_s_barangay" real,
"population_2010" real,
"area_km" text,
"pop_density_per_km" text
); | SELECT "no_of_s_barangay" FROM "political_divisions" WHERE "pop_density_per_km"='205.4'; | 1-269888-1 |
How many different FSB are there for the 7140N model? | CREATE TABLE "7100_series_tulsa" (
"model" text,
"speed_g_hz" text,
"l2_cache_mb" real,
"l3_cache_mb" real,
"fsb_m_hz" real,
"tdp_w" real
); | SELECT COUNT("fsb_m_hz") FROM "7100_series_tulsa" WHERE "model"='7140N'; | 1-269920-3 |
How many different L2 cache numbers are there for the 7130M model? | CREATE TABLE "7100_series_tulsa" (
"model" text,
"speed_g_hz" text,
"l2_cache_mb" real,
"l3_cache_mb" real,
"fsb_m_hz" real,
"tdp_w" real
); | SELECT COUNT("l2_cache_mb") FROM "7100_series_tulsa" WHERE "model"='7130M'; | 1-269920-3 |
What's the maximal L3 cache for any of the models given? | CREATE TABLE "7100_series_tulsa" (
"model" text,
"speed_g_hz" text,
"l2_cache_mb" real,
"l3_cache_mb" real,
"fsb_m_hz" real,
"tdp_w" real
); | SELECT MAX("l2_cache_mb") FROM "7100_series_tulsa"; | 1-269920-3 |
What's the TDP for the 7130N model? | CREATE TABLE "7100_series_tulsa" (
"model" text,
"speed_g_hz" text,
"l2_cache_mb" real,
"l3_cache_mb" real,
"fsb_m_hz" real,
"tdp_w" real
); | SELECT MIN("tdp_w") FROM "7100_series_tulsa" WHERE "model"='7130N'; | 1-269920-3 |
What's the L2 cache for the 7140N model? | CREATE TABLE "7100_series_tulsa" (
"model" text,
"speed_g_hz" text,
"l2_cache_mb" real,
"l3_cache_mb" real,
"fsb_m_hz" real,
"tdp_w" real
); | SELECT "l2_cache_mb" FROM "7100_series_tulsa" WHERE "model"='7140N'; | 1-269920-3 |
what is the cfl team where college is waterloo? | CREATE TABLE "round_four" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT COUNT("cfl_team") FROM "round_four" WHERE "college"='Waterloo'; | 1-26996293-4 |
What college did Jim Bennett attend? | CREATE TABLE "round_one" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT "college" FROM "round_one" WHERE "player"='Jim Bennett'; | 1-26996293-1 |
What CFL Team was Barry Jamieson a part of? | CREATE TABLE "round_one" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT "cfl_team" FROM "round_one" WHERE "player"='Barry Jamieson'; | 1-26996293-1 |
What college did the player who played DE go to? | CREATE TABLE "round_one" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT "college" FROM "round_one" WHERE "position"='DE'; | 1-26996293-1 |
What was Barry Jamieson's pick number? | CREATE TABLE "round_one" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT MAX("pick_num") FROM "round_one" WHERE "player"='Barry Jamieson'; | 1-26996293-1 |
What college did Bob Larose attend? | CREATE TABLE "round_one" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT "college" FROM "round_one" WHERE "player"='Bob LaRose'; | 1-26996293-1 |
where college is british columbia what are all the player | CREATE TABLE "round_two" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT "player" FROM "round_two" WHERE "college"='British Columbia'; | 1-26996293-2 |
where college is st. francis xavier what are all the pick # | CREATE TABLE "round_two" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT "pick_num" FROM "round_two" WHERE "college"='St. Francis Xavier'; | 1-26996293-2 |
player is jim henshall what are all the position | CREATE TABLE "round_two" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT "position" FROM "round_two" WHERE "player"='Jim Henshall'; | 1-26996293-2 |
where cfl team is edmonton (2) what are all the position | CREATE TABLE "round_two" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT "position" FROM "round_two" WHERE "cfl_team"='Edmonton (2)'; | 1-26996293-2 |
where cfl team is winnipeg (3) via hamilton what are all the player | CREATE TABLE "round_two" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT "player" FROM "round_two" WHERE "cfl_team"='Winnipeg (3) via Hamilton'; | 1-26996293-2 |
How many CFL teams drafted someone from mount allison college? | CREATE TABLE "round_three" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT COUNT("cfl_team") FROM "round_three" WHERE "college"='Mount Allison'; | 1-26996293-3 |
What player drafted was an OG? | CREATE TABLE "round_three" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT "player" FROM "round_three" WHERE "position"='OG'; | 1-26996293-3 |
What is the position of the player bill simmons? | CREATE TABLE "round_seven" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT "position" FROM "round_seven" WHERE "player"='Bill Simmons'; | 1-26996293-7 |
What is the position of cfl team saskatchewan (7)? | CREATE TABLE "round_seven" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT "position" FROM "round_seven" WHERE "cfl_team"='Saskatchewan (7)'; | 1-26996293-7 |
How many times was player brian currie picked? | CREATE TABLE "round_seven" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT COUNT("pick_num") FROM "round_seven" WHERE "player"='Brian Currie'; | 1-26996293-7 |
What position was pick # 54? | CREATE TABLE "round_seven" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT "position" FROM "round_seven" WHERE "pick_num"=54; | 1-26996293-7 |
What is the pick # of cfl team bc lions (7) | CREATE TABLE "round_seven" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT "pick_num" FROM "round_seven" WHERE "cfl_team"='BC Lions (7)'; | 1-26996293-7 |
What is the college where player terry moss attended? | CREATE TABLE "round_seven" (
"pick_num" real,
"cfl_team" text,
"player" text,
"position" text,
"college" text
); | SELECT "college" FROM "round_seven" WHERE "player"='Terry Moss'; | 1-26996293-7 |
What is the outgoing manager for the team kasımpaşa? | CREATE TABLE "managerial_changes" (
"team" text,
"outgoing_manager" text,
"manner_of_departure" text,
"date_of_vacancy" text,
"replaced_by" text,
"date_of_appointment" text
); | SELECT "outgoing_manager" FROM "managerial_changes" WHERE "team"='Kasımpaşa'; | 1-26998135-2 |
Who is the replaced by when the date of vacancy is 27 december 2010? | CREATE TABLE "managerial_changes" (
"team" text,
"outgoing_manager" text,
"manner_of_departure" text,
"date_of_vacancy" text,
"replaced_by" text,
"date_of_appointment" text
); | SELECT "replaced_by" FROM "managerial_changes" WHERE "date_of_vacancy"='27 December 2010'; | 1-26998135-2 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.