question stringlengths 12 244 | create_table_statement stringlengths 97 895 | sql_query stringlengths 27 479 | wiki_sql_table_id stringlengths 8 14 |
|---|---|---|---|
Who was the husband date that was married in 1858? | CREATE TABLE "list_of_princesses_royal" (
"order" real,
"name_dates" text,
"princess_royal_from_date_to_date" text,
"parent" text,
"date_married" text,
"husband_dates" text
); | SELECT "husband_dates" FROM "list_of_princesses_royal" WHERE "date_married"='1858'; | 2-172426-1 |
Can you tell me the Record that has the Opponent of vs. hamilton tiger cats? | CREATE TABLE "season_schedule" (
"week" real,
"date" text,
"opponent" text,
"score" text,
"result" text,
"attendance" text,
"record" text
); | SELECT "record" FROM "season_schedule" WHERE "opponent"='vs. hamilton tiger cats'; | 2-16945617-4 |
Can you tell me the Opponent that has the Date of sun, sept 9? | CREATE TABLE "season_schedule" (
"week" real,
"date" text,
"opponent" text,
"score" text,
"result" text,
"attendance" text,
"record" text
); | SELECT "opponent" FROM "season_schedule" WHERE "date"='sun, sept 9'; | 2-16945617-4 |
Which country is Scott Hoch from? | CREATE TABLE "sunday" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "country" FROM "sunday" WHERE "player"='scott hoch'; | 2-16514242-6 |
What is the place of the player from Spain? | CREATE TABLE "sunday" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "place" FROM "sunday" WHERE "country"='spain'; | 2-16514242-6 |
What is Score, when Record is 12-57? | CREATE TABLE "february" (
"date" text,
"h_a_n" text,
"opponent" text,
"score" text,
"record" text
); | SELECT "score" FROM "february" WHERE "record"='12-57'; | 2-16275352-8 |
What is Date, when Record is 12-58? | CREATE TABLE "february" (
"date" text,
"h_a_n" text,
"opponent" text,
"score" text,
"record" text
); | SELECT "date" FROM "february" WHERE "record"='12-58'; | 2-16275352-8 |
What is Score, when Date is February 5? | CREATE TABLE "february" (
"date" text,
"h_a_n" text,
"opponent" text,
"score" text,
"record" text
); | SELECT "score" FROM "february" WHERE "date"='february 5'; | 2-16275352-8 |
What is H/A/N, when Score is 104-109? | CREATE TABLE "february" (
"date" text,
"h_a_n" text,
"opponent" text,
"score" text,
"record" text
); | SELECT "h_a_n" FROM "february" WHERE "score"='104-109'; | 2-16275352-8 |
What is Score, when Opponent is Portland Trail Blazers, and when Record is 12-58? | CREATE TABLE "february" (
"date" text,
"h_a_n" text,
"opponent" text,
"score" text,
"record" text
); | SELECT "score" FROM "february" WHERE "opponent"='portland trail blazers' AND "record"='12-58'; | 2-16275352-8 |
What is H/A/N when Date is February 24? | CREATE TABLE "february" (
"date" text,
"h_a_n" text,
"opponent" text,
"score" text,
"record" text
); | SELECT "h_a_n" FROM "february" WHERE "date"='february 24'; | 2-16275352-8 |
What is the last game of the season that has the record 0-1-0? | CREATE TABLE "schedule_and_results" (
"game" real,
"october" real,
"opponent" text,
"score" text,
"record" text
); | SELECT MIN("game") FROM "schedule_and_results" WHERE "record"='0-1-0'; | 2-17311417-2 |
Who had the decision goal when the date was 1? | CREATE TABLE "game_log" (
"game" real,
"date" real,
"opponent" text,
"score" text,
"decision" text,
"location_attendance" text,
"record" text
); | SELECT "decision" FROM "game_log" WHERE "date"=1; | 2-17360752-5 |
Who had the decision goal when the record was 7-7-2? | CREATE TABLE "game_log" (
"game" real,
"date" real,
"opponent" text,
"score" text,
"decision" text,
"location_attendance" text,
"record" text
); | SELECT "decision" FROM "game_log" WHERE "record"='7-7-2'; | 2-17360752-5 |
What was the first game in which Weekes scored the decision goal and the record was 7-4-2? | CREATE TABLE "game_log" (
"game" real,
"date" real,
"opponent" text,
"score" text,
"decision" text,
"location_attendance" text,
"record" text
); | SELECT MIN("game") FROM "game_log" WHERE "decision"='weekes' AND "record"='7-4-2'; | 2-17360752-5 |
What's the total number of points scored during the 1951 NSWRFL Grand Final? | CREATE TABLE "most_points_scored_by_a_team" (
"points" real,
"score" text,
"premiers" text,
"runners_up" text,
"details" text
); | SELECT COUNT("points") FROM "most_points_scored_by_a_team" WHERE "details"='1951 nswrfl grand final'; | 2-16633950-2 |
Which premier team played the 1951 NSWRFL Grand Final? | CREATE TABLE "most_points_scored_by_a_team" (
"points" real,
"score" text,
"premiers" text,
"runners_up" text,
"details" text
); | SELECT "premiers" FROM "most_points_scored_by_a_team" WHERE "details"='1951 nswrfl grand final'; | 2-16633950-2 |
During which competition were a total of 36 points scored? | CREATE TABLE "most_points_scored_by_a_team" (
"points" real,
"score" text,
"premiers" text,
"runners_up" text,
"details" text
); | SELECT "details" FROM "most_points_scored_by_a_team" WHERE "points"=36; | 2-16633950-2 |
What's the total sum of points scored by the Brisbane Broncos? | CREATE TABLE "most_points_scored_by_a_team" (
"points" real,
"score" text,
"premiers" text,
"runners_up" text,
"details" text
); | SELECT SUM("points") FROM "most_points_scored_by_a_team" WHERE "premiers"='brisbane broncos'; | 2-16633950-2 |
What is the premier team that has 38 points and won with a score of 38-0? | CREATE TABLE "most_points_scored_by_a_team" (
"points" real,
"score" text,
"premiers" text,
"runners_up" text,
"details" text
); | SELECT "premiers" FROM "most_points_scored_by_a_team" WHERE "points"=38 AND "score"='38-0'; | 2-16633950-2 |
What was the tie no when the away team was northwich victoria? | CREATE TABLE "first_round_proper" (
"tie_no" text,
"home_team" text,
"score" text,
"away_team" text,
"attendance" text
); | SELECT "tie_no" FROM "first_round_proper" WHERE "away_team"='northwich victoria'; | 2-17004128-2 |
What was the attendance for the match where cambridge united was the home team? | CREATE TABLE "first_round_proper" (
"tie_no" text,
"home_team" text,
"score" text,
"away_team" text,
"attendance" text
); | SELECT "attendance" FROM "first_round_proper" WHERE "home_team"='cambridge united'; | 2-17004128-2 |
How many times was the award inte awards? | CREATE TABLE "awards_and_nominations" (
"award" text,
"year" real,
"category" text,
"work" text,
"result" text
); | SELECT COUNT("year") FROM "awards_and_nominations" WHERE "award"='inte awards'; | 2-16406152-2 |
what is the work when the result is won and the year is after 2002? | CREATE TABLE "awards_and_nominations" (
"award" text,
"year" real,
"category" text,
"work" text,
"result" text
); | SELECT "work" FROM "awards_and_nominations" WHERE "result"='won' AND "year">2002; | 2-16406152-2 |
what is the work when the result is won and the year is before 2003? | CREATE TABLE "awards_and_nominations" (
"award" text,
"year" real,
"category" text,
"work" text,
"result" text
); | SELECT "work" FROM "awards_and_nominations" WHERE "result"='won' AND "year"<2003; | 2-16406152-2 |
Which venue had the opposing team Natal? | CREATE TABLE "matches" (
"opposing_team" text,
"against" real,
"date" text,
"venue" text,
"status" text
); | SELECT "venue" FROM "matches" WHERE "opposing_team"='natal'; | 2-17058817-1 |
What day was the against 22 and the status tour match? | CREATE TABLE "matches" (
"opposing_team" text,
"against" real,
"date" text,
"venue" text,
"status" text
); | SELECT "date" FROM "matches" WHERE "status"='tour match' AND "against"=22; | 2-17058817-1 |
Which Attendance has a Week of 8? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"attendance" real
); | SELECT AVG("attendance") FROM "schedule" WHERE "week"=8; | 2-16436485-2 |
Which Opponent that has a Week smaller than 7 on september 12, 1988? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"attendance" real
); | SELECT "opponent" FROM "schedule" WHERE "week"<7 AND "date"='september 12, 1988'; | 2-16436485-2 |
When has a Result of w 41-27? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"attendance" real
); | SELECT "date" FROM "schedule" WHERE "result"='w 41-27'; | 2-16436485-2 |
Which Weight (kg) has a Manufacturer of fujitsu, and a Model of lifebook p1610? | CREATE TABLE "subnotebooks" (
"model" text,
"manufacturer" text,
"weight_kg" real,
"display_size_in" real,
"processor_model" text,
"storage_type" text
); | SELECT AVG("weight_kg") FROM "subnotebooks" WHERE "manufacturer"='fujitsu' AND "model"='lifebook p1610'; | 2-17471066-1 |
Which Display size (in) has a Model of versapro vy10f/bh-l? | CREATE TABLE "subnotebooks" (
"model" text,
"manufacturer" text,
"weight_kg" real,
"display_size_in" real,
"processor_model" text,
"storage_type" text
); | SELECT MIN("display_size_in") FROM "subnotebooks" WHERE "model"='versapro vy10f/bh-l'; | 2-17471066-1 |
Which Display size (in) has a Model of vaio pcg-u3? | CREATE TABLE "subnotebooks" (
"model" text,
"manufacturer" text,
"weight_kg" real,
"display_size_in" real,
"processor_model" text,
"storage_type" text
); | SELECT COUNT("display_size_in") FROM "subnotebooks" WHERE "model"='vaio pcg-u3'; | 2-17471066-1 |
What method was used in the match that went to round 1, and had a 6-3-1 record? | CREATE TABLE "mixed_martial_arts_record" (
"res" text,
"record" text,
"opponent" text,
"method" text,
"event" text,
"round" real,
"time" text,
"location" text
); | SELECT "method" FROM "mixed_martial_arts_record" WHERE "round"=1 AND "record"='6-3-1'; | 2-17433805-2 |
In the match against Marcus Aurélio with a method of decision (unanimous), what was the results? | CREATE TABLE "mixed_martial_arts_record" (
"res" text,
"record" text,
"opponent" text,
"method" text,
"event" text,
"round" real,
"time" text,
"location" text
); | SELECT "res" FROM "mixed_martial_arts_record" WHERE "method"='decision (unanimous)' AND "opponent"='marcus aurélio'; | 2-17433805-2 |
Where was the Deep - 30 Impact event held? | CREATE TABLE "mixed_martial_arts_record" (
"res" text,
"record" text,
"opponent" text,
"method" text,
"event" text,
"round" real,
"time" text,
"location" text
); | SELECT "location" FROM "mixed_martial_arts_record" WHERE "event"='deep - 30 impact'; | 2-17433805-2 |
COunt the average Diameter (km) which has ketian (yenisey r.) main evil goddess.? | CREATE TABLE "fossae" (
"name" text,
"latitude" text,
"longitude" text,
"diameter_km" real,
"year_named" real,
"name_origin" text
); | SELECT AVG("diameter_km") FROM "fossae" WHERE "name_origin"='ketian (yenisey r.) main evil goddess.'; | 2-16799784-11 |
COunt the sum of Diameter (km) which has a Latitude of 62.7n? | CREATE TABLE "fossae" (
"name" text,
"latitude" text,
"longitude" text,
"diameter_km" real,
"year_named" real,
"name_origin" text
); | SELECT SUM("diameter_km") FROM "fossae" WHERE "latitude"='62.7n'; | 2-16799784-11 |
WHich Name origin has a Longitude of 332.5e? | CREATE TABLE "fossae" (
"name" text,
"latitude" text,
"longitude" text,
"diameter_km" real,
"year_named" real,
"name_origin" text
); | SELECT "name_origin" FROM "fossae" WHERE "longitude"='332.5e'; | 2-16799784-11 |
In which round was Dustin Hazelett the opponent? | CREATE TABLE "mixed_martial_arts_record" (
"res" text,
"record" text,
"opponent" text,
"method" text,
"event" text,
"round" real,
"time" text,
"location" text
); | SELECT "round" FROM "mixed_martial_arts_record" WHERE "opponent"='dustin hazelett'; | 2-17441410-2 |
What is TV Time, when Opponent is At Cincinnati Bengals? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"tv_time" text,
"attendance" text
); | SELECT "tv_time" FROM "schedule" WHERE "opponent"='at cincinnati bengals'; | 2-16779982-1 |
What is TV Time, when Date is December 22, 1996? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"tv_time" text,
"attendance" text
); | SELECT "tv_time" FROM "schedule" WHERE "date"='december 22, 1996'; | 2-16779982-1 |
What is Result, when Opponent is Cincinnati Bengals? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"tv_time" text,
"attendance" text
); | SELECT "result" FROM "schedule" WHERE "opponent"='cincinnati bengals'; | 2-16779982-1 |
What was their record bfore game 54? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "record" FROM "game_log" WHERE "game"=54; | 2-17322817-8 |
Who had the most rebounds in the game against Chicago? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "high_rebounds" FROM "game_log" WHERE "team"='chicago'; | 2-17322817-8 |
What was the lowest attendance at the game against chicago when conklin made the decision? | CREATE TABLE "game_log" (
"date" text,
"visitor" text,
"score" text,
"home" text,
"decision" text,
"attendance" real,
"record" text
); | SELECT MIN("attendance") FROM "game_log" WHERE "decision"='conklin' AND "visitor"='chicago'; | 2-17371135-6 |
For Tie #2, who was the home team? | CREATE TABLE "second_round_proper" (
"tie_no" text,
"home_team" text,
"score" text,
"away_team" text,
"date" text
); | SELECT "home_team" FROM "second_round_proper" WHERE "tie_no"='2'; | 2-17438338-2 |
What was the final score for the match where Hereford United was the home team? | CREATE TABLE "second_round_proper" (
"tie_no" text,
"home_team" text,
"score" text,
"away_team" text,
"date" text
); | SELECT "score" FROM "second_round_proper" WHERE "home_team"='hereford united'; | 2-17438338-2 |
In Tie #18, who was the away team? | CREATE TABLE "second_round_proper" (
"tie_no" text,
"home_team" text,
"score" text,
"away_team" text,
"date" text
); | SELECT "away_team" FROM "second_round_proper" WHERE "tie_no"='18'; | 2-17438338-2 |
In Tie #19, what was the name of the away team? | CREATE TABLE "second_round_proper" (
"tie_no" text,
"home_team" text,
"score" text,
"away_team" text,
"date" text
); | SELECT "away_team" FROM "second_round_proper" WHERE "tie_no"='19'; | 2-17438338-2 |
What is the Tie number for the match where Dartford was the hone team? | CREATE TABLE "second_round_proper" (
"tie_no" text,
"home_team" text,
"score" text,
"away_team" text,
"date" text
); | SELECT "tie_no" FROM "second_round_proper" WHERE "home_team"='dartford'; | 2-17438338-2 |
In the match played against Telford United, who was the home team? | CREATE TABLE "second_round_proper" (
"tie_no" text,
"home_team" text,
"score" text,
"away_team" text,
"date" text
); | SELECT "home_team" FROM "second_round_proper" WHERE "away_team"='telford united'; | 2-17438338-2 |
What is Position, when Class is Sophomore, and when Player is Shaquille O'Neal Category:Articles With hCards? | CREATE TABLE "winners" (
"season" text,
"player" text,
"school" text,
"position" text,
"class" text
); | SELECT "position" FROM "winners" WHERE "class"='sophomore' AND "player"='shaquille o''neal category:articles with hcards'; | 2-1676727-2 |
What is Player, when Class is "senior", when Position is "shooting guard", and when School is "Bradley"? | CREATE TABLE "winners" (
"season" text,
"player" text,
"school" text,
"position" text,
"class" text
); | SELECT "player" FROM "winners" WHERE "class"='senior' AND "position"='shooting guard' AND "school"='bradley'; | 2-1676727-2 |
What is Position, when Player is "Kevin Durant category:articles with hCards"? | CREATE TABLE "winners" (
"season" text,
"player" text,
"school" text,
"position" text,
"class" text
); | SELECT "position" FROM "winners" WHERE "player"='kevin durant category:articles with hcards'; | 2-1676727-2 |
What is the Score of the match on August 23, 2004? | CREATE TABLE "doubles_11_6_5" (
"outcome" text,
"date" text,
"tournament" text,
"surface" text,
"partner" text,
"opponents" text,
"score" text
); | SELECT "score" FROM "doubles_11_6_5" WHERE "date"='august 23, 2004'; | 2-16956201-6 |
What was the Score of the Spain F32, Gran Canaria Tournament? | CREATE TABLE "doubles_11_6_5" (
"outcome" text,
"date" text,
"tournament" text,
"surface" text,
"partner" text,
"opponents" text,
"score" text
); | SELECT "score" FROM "doubles_11_6_5" WHERE "tournament"='spain f32, gran canaria'; | 2-16956201-6 |
On what Surface was the match with a Score of 6–4, 6–3 and Runner-up Outcome played? | CREATE TABLE "doubles_11_6_5" (
"outcome" text,
"date" text,
"tournament" text,
"surface" text,
"partner" text,
"opponents" text,
"score" text
); | SELECT "surface" FROM "doubles_11_6_5" WHERE "outcome"='runner-up' AND "score"='6–4, 6–3'; | 2-16956201-6 |
What is the Outcome of the match with Partner Andoni Vivanco? | CREATE TABLE "doubles_11_6_5" (
"outcome" text,
"date" text,
"tournament" text,
"surface" text,
"partner" text,
"opponents" text,
"score" text
); | SELECT "outcome" FROM "doubles_11_6_5" WHERE "partner"='andoni vivanco'; | 2-16956201-6 |
Who was the Leading Scorer in the Game with a Score of 96-87? | CREATE TABLE "season_schedule" (
"date" text,
"opponent" text,
"score" text,
"leading_scorer" text,
"attendance" real,
"record" text
); | SELECT "leading_scorer" FROM "season_schedule" WHERE "score"='96-87'; | 2-17104258-6 |
What Country with a MC Format has a ATCO Records Label? | CREATE TABLE "release_history" (
"format" text,
"country" text,
"label" text,
"catalogue_no" text,
"date" text
); | SELECT "country" FROM "release_history" WHERE "label"='atco records' AND "format"='mc'; | 2-1689029-2 |
What team has a location and attendance at the Seattle Center Coliseum 12,591? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "team" FROM "game_log" WHERE "location_attendance"='seattle center coliseum 12,591'; | 2-17382360-9 |
What is 1st Leg, when Team #2 is "Emelec"? | CREATE TABLE "round_of_16" (
"team_num1" text,
"points" text,
"team_num2" text,
"1st_leg" text,
"2nd_leg" text
); | SELECT "1st_leg" FROM "round_of_16" WHERE "team_num2"='emelec'; | 2-17282875-3 |
What is 1st Leg, when Team #1 is "San Lorenzo"? | CREATE TABLE "round_of_16" (
"team_num1" text,
"points" text,
"team_num2" text,
"1st_leg" text,
"2nd_leg" text
); | SELECT "1st_leg" FROM "round_of_16" WHERE "team_num1"='san lorenzo'; | 2-17282875-3 |
What is the muzzle energy with grains (g) bullet weight and a max pressure of 35,000 psi? | CREATE TABLE "38_comparisons" (
"cartridge" text,
"bullet_weight" text,
"muzzle_velocity" text,
"muzzle_energy" text,
"max_pressure" text
); | SELECT "muzzle_energy" FROM "38_comparisons" WHERE "bullet_weight"='grains (g)' AND "max_pressure"='35,000 psi'; | 2-173103-1 |
What is the bullet weight with a 12,000 cup max pressure? | CREATE TABLE "38_comparisons" (
"cartridge" text,
"bullet_weight" text,
"muzzle_velocity" text,
"muzzle_energy" text,
"max_pressure" text
); | SELECT "bullet_weight" FROM "38_comparisons" WHERE "max_pressure"='12,000 cup'; | 2-173103-1 |
What is the max pressure for the 468ft•lbf (634 j) muzzle energy? | CREATE TABLE "38_comparisons" (
"cartridge" text,
"bullet_weight" text,
"muzzle_velocity" text,
"muzzle_energy" text,
"max_pressure" text
); | SELECT "max_pressure" FROM "38_comparisons" WHERE "muzzle_energy"='468ft•lbf (634 j)'; | 2-173103-1 |
What is the muzzle velocity for the muzzle energy 351ft•lbf (476 j)? | CREATE TABLE "38_comparisons" (
"cartridge" text,
"bullet_weight" text,
"muzzle_velocity" text,
"muzzle_energy" text,
"max_pressure" text
); | SELECT "muzzle_velocity" FROM "38_comparisons" WHERE "muzzle_energy"='351ft•lbf (476 j)'; | 2-173103-1 |
What is the muzzle velocity for the .38 long colt cartridge? | CREATE TABLE "38_comparisons" (
"cartridge" text,
"bullet_weight" text,
"muzzle_velocity" text,
"muzzle_energy" text,
"max_pressure" text
); | SELECT "muzzle_velocity" FROM "38_comparisons" WHERE "cartridge"='.38 long colt'; | 2-173103-1 |
What is the muzzle energy with 40,000 psi max pressure? | CREATE TABLE "38_comparisons" (
"cartridge" text,
"bullet_weight" text,
"muzzle_velocity" text,
"muzzle_energy" text,
"max_pressure" text
); | SELECT "muzzle_energy" FROM "38_comparisons" WHERE "max_pressure"='40,000 psi'; | 2-173103-1 |
What is the home country of the player who placed t5 and had a score of 69-71=140? | CREATE TABLE "second_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "country" FROM "second_round" WHERE "place"='t5' AND "score"='69-71=140'; | 2-17162268-5 |
What was the place for the player whose final score was 71-69=140? | CREATE TABLE "second_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "place" FROM "second_round" WHERE "score"='71-69=140'; | 2-17162268-5 |
What was the To par for the player whose final score was 67-71=138? | CREATE TABLE "second_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "to_par" FROM "second_round" WHERE "score"='67-71=138'; | 2-17162268-5 |
What was Nolan Henke's To par when he placed in t3? | CREATE TABLE "second_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "to_par" FROM "second_round" WHERE "place"='t3' AND "player"='nolan henke'; | 2-17162268-5 |
WHAT IS THE MEANING WITH Pīnyīn of chē? | CREATE TABLE "table_of_radicals" (
"radical_variants" text,
"stroke_count" real,
"p_ny_n" text,
"hiragana_romaji" text,
"meaning" text,
"frequency" real,
"examples" text
); | SELECT "meaning" FROM "table_of_radicals" WHERE "p_ny_n"='chē'; | 2-1709013-1 |
WHAT IS THE RADICAL WITH gǔ, AND STROKE COUNT OF 7? | CREATE TABLE "table_of_radicals" (
"radical_variants" text,
"stroke_count" real,
"p_ny_n" text,
"hiragana_romaji" text,
"meaning" text,
"frequency" real,
"examples" text
); | SELECT "radical_variants" FROM "table_of_radicals" WHERE "p_ny_n"='gǔ' AND "stroke_count"=7; | 2-1709013-1 |
WHAT IS THE STROKE COUNT WITH RADICAL OF 生, FRQUENCY SMALLER THAN 22? | CREATE TABLE "table_of_radicals" (
"radical_variants" text,
"stroke_count" real,
"p_ny_n" text,
"hiragana_romaji" text,
"meaning" text,
"frequency" real,
"examples" text
); | SELECT COUNT("stroke_count") FROM "table_of_radicals" WHERE "radical_variants"='生' AND "frequency"<22; | 2-1709013-1 |
WHAT IS THE STROKE COUNT WITH RADICAL 皿 FREQUENCY SMALLER THAN 129? | CREATE TABLE "table_of_radicals" (
"radical_variants" text,
"stroke_count" real,
"p_ny_n" text,
"hiragana_romaji" text,
"meaning" text,
"frequency" real,
"examples" text
); | SELECT AVG("stroke_count") FROM "table_of_radicals" WHERE "radical_variants"='皿' AND "frequency"<129; | 2-1709013-1 |
What is the Flagship of the Show Hosted by Rover (Shane French)? | CREATE TABLE "talk_shows" (
"show" text,
"host_s" text,
"flagship" text,
"market" text,
"i_heart_radio" text
); | SELECT "flagship" FROM "talk_shows" WHERE "host_s"='rover (shane french)'; | 2-17300616-1 |
What is the Host of the Show with a Market of New York? | CREATE TABLE "talk_shows" (
"show" text,
"host_s" text,
"flagship" text,
"market" text,
"i_heart_radio" text
); | SELECT "host_s" FROM "talk_shows" WHERE "market"='new york'; | 2-17300616-1 |
What is the iHeartRadio of the Bronson and Christine Show? | CREATE TABLE "talk_shows" (
"show" text,
"host_s" text,
"flagship" text,
"market" text,
"i_heart_radio" text
); | SELECT "i_heart_radio" FROM "talk_shows" WHERE "show"='bronson and christine'; | 2-17300616-1 |
What is the to total number of par with laurie ayton? | CREATE TABLE "final_leaderboard" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" real,
"money" text
); | SELECT COUNT("to_par") FROM "final_leaderboard" WHERE "player"='laurie ayton'; | 2-17163312-1 |
Where is bobby jones (a)? | CREATE TABLE "final_leaderboard" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" real,
"money" text
); | SELECT "place" FROM "final_leaderboard" WHERE "player"='bobby jones (a)'; | 2-17163312-1 |
Can you tell me the total number of Top 5 that has the Year smaller than 2009, and the Wins larger than 0? | CREATE TABLE "nascar_camping_world_truck_series" (
"year" real,
"starts" real,
"wins" real,
"top_5" real,
"top_10" real,
"poles" real,
"avg_start" real,
"avg_finish" text,
"winnings" text,
"position" text,
"team_s" text
); | SELECT COUNT("top_5") FROM "nascar_camping_world_truck_series" WHERE "year"<2009 AND "wins">0; | 2-1637041-6 |
Can you tell me the Wins that has the Starts larger than 1, and the Top 5 of 3? | CREATE TABLE "nascar_camping_world_truck_series" (
"year" real,
"starts" real,
"wins" real,
"top_5" real,
"top_10" real,
"poles" real,
"avg_start" real,
"avg_finish" text,
"winnings" text,
"position" text,
"team_s" text
); | SELECT "wins" FROM "nascar_camping_world_truck_series" WHERE "starts">1 AND "top_5"=3; | 2-1637041-6 |
Can you tell me the sum of Starts that the Winnings of $139,774, and the Wins smaller than 0? | CREATE TABLE "nascar_camping_world_truck_series" (
"year" real,
"starts" real,
"wins" real,
"top_5" real,
"top_10" real,
"poles" real,
"avg_start" real,
"avg_finish" text,
"winnings" text,
"position" text,
"team_s" text
); | SELECT SUM("starts") FROM "nascar_camping_world_truck_series" WHERE "winnings"='$139,774' AND "wins"<0; | 2-1637041-6 |
Who is affiliated with the nickname Ramblers? | CREATE TABLE "north_conference" (
"institution" text,
"location" text,
"founded" real,
"affiliation" text,
"nickname" text
); | SELECT "affiliation" FROM "north_conference" WHERE "nickname"='ramblers'; | 2-16406736-2 |
Who was the Opponent in the match with a Score of 6–3, 6–4? | CREATE TABLE "singles_14_6_8" (
"outcome" text,
"date" text,
"tournament" text,
"surface" text,
"opponent" text,
"score" text
); | SELECT "opponent" FROM "singles_14_6_8" WHERE "score"='6–3, 6–4'; | 2-16741821-3 |
On what Surface was the match against Malek Jaziri played? | CREATE TABLE "singles_14_6_8" (
"outcome" text,
"date" text,
"tournament" text,
"surface" text,
"opponent" text,
"score" text
); | SELECT "surface" FROM "singles_14_6_8" WHERE "opponent"='malek jaziri'; | 2-16741821-3 |
What is the total number of Year(s) Won, when Player is Ed Furgol, and when To Par is greater than 12? | CREATE TABLE "made_the_cut" (
"player" text,
"country" text,
"year_s_won" real,
"total" real,
"to_par" real,
"finish" text
); | SELECT COUNT("year_s_won") FROM "made_the_cut" WHERE "player"='ed furgol' AND "to_par">12; | 2-17277176-1 |
What is Year(s) Won, when Player is Arnold Palmer? | CREATE TABLE "made_the_cut" (
"player" text,
"country" text,
"year_s_won" real,
"total" real,
"to_par" real,
"finish" text
); | SELECT "year_s_won" FROM "made_the_cut" WHERE "player"='arnold palmer'; | 2-17277176-1 |
What is Highest Total, when Year(s) Won is before 1959? | CREATE TABLE "made_the_cut" (
"player" text,
"country" text,
"year_s_won" real,
"total" real,
"to_par" real,
"finish" text
); | SELECT MAX("total") FROM "made_the_cut" WHERE "year_s_won"<1959; | 2-17277176-1 |
What is Player, when Year(s) Won is before 1961, and when To Par is 6? | CREATE TABLE "made_the_cut" (
"player" text,
"country" text,
"year_s_won" real,
"total" real,
"to_par" real,
"finish" text
); | SELECT "player" FROM "made_the_cut" WHERE "year_s_won"<1961 AND "to_par"=6; | 2-17277176-1 |
What is Finish, when To Par is greater than 6, and when Year(s) Won is before 1961? | CREATE TABLE "made_the_cut" (
"player" text,
"country" text,
"year_s_won" real,
"total" real,
"to_par" real,
"finish" text
); | SELECT "finish" FROM "made_the_cut" WHERE "to_par">6 AND "year_s_won"<1961; | 2-17277176-1 |
What is Top Par, when Country is Sweden? | CREATE TABLE "final_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text,
"money" real
); | SELECT "to_par" FROM "final_round" WHERE "country"='sweden'; | 2-16292316-7 |
What is the highest Money ($), when Top Par is E, and when Player is Ernie Els? | CREATE TABLE "final_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text,
"money" real
); | SELECT MAX("money") FROM "final_round" WHERE "to_par"='e' AND "player"='ernie els'; | 2-16292316-7 |
What is the sum of Money ($), when Score is 70-71-70-69=280? | CREATE TABLE "final_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text,
"money" real
); | SELECT SUM("money") FROM "final_round" WHERE "score"='70-71-70-69=280'; | 2-16292316-7 |
What was the high assist when the high point was Eric Gordon (21)? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "high_assists" FROM "game_log" WHERE "high_points"='eric gordon (21)'; | 2-17323529-8 |
What day was the high assist Mike Taylor (5)? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "date" FROM "game_log" WHERE "high_assists"='mike taylor (5)'; | 2-17323529-8 |
What was the record when the high rebound was Deandre Jordan (11)? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "record" FROM "game_log" WHERE "high_rebounds"='deandre jordan (11)'; | 2-17323529-8 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.