answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|
SELECT money_spent, _2q FROM table_name_69 WHERE total_receipts = "$1,117,566" | How much money was spent in 2Q when the total receipts were $1,117,566? | CREATE TABLE table_name_69 (money_spent VARCHAR, _2q VARCHAR, total_receipts VARCHAR) |
SELECT chassis FROM table_name_40 WHERE points > 0 | What chassis has more than 0 points? | CREATE TABLE table_name_40 (chassis VARCHAR, points INTEGER) |
SELECT result FROM table_16028499_2 WHERE week = 2 | What was the result of week 2? | CREATE TABLE table_16028499_2 (result VARCHAR, week VARCHAR) |
SELECT report FROM table_name_25 WHERE race = "belgian grand prix" | Which Report includes the Belgian Grand Prix Race? | CREATE TABLE table_name_25 (report VARCHAR, race VARCHAR) |
SELECT MAX(no_in_season) FROM table_10718192_2 | What's the highest season number of an episode in the series? | CREATE TABLE table_10718192_2 (no_in_season INTEGER) |
SELECT T2.Name, T3.Theme FROM journal_committee AS T1 JOIN editor AS T2 ON T1.Editor_ID = T2.Editor_ID JOIN journal AS T3 ON T1.Journal_ID = T3.Journal_ID | Show the names of editors and the theme of journals for which they serve on committees. | CREATE TABLE journal_committee (Editor_ID VARCHAR, Journal_ID VARCHAR); CREATE TABLE editor (Name VARCHAR, Editor_ID VARCHAR); CREATE TABLE journal (Theme VARCHAR, Journal_ID VARCHAR) |
SELECT record FROM table_name_87 WHERE week = "hf" | Tell me thee record for week of hf | CREATE TABLE table_name_87 (record VARCHAR, week VARCHAR) |
SELECT home_team AS score FROM table_name_2 WHERE home_team = "south melbourne" | What was the score for south melbourne at home? | CREATE TABLE table_name_2 (home_team VARCHAR) |
SELECT COUNT(top_5) FROM table_1929755_1 WHERE avg_start = "17.7" | HOw many top 5 starts did the team with an average start of 17.7 have? | CREATE TABLE table_1929755_1 (top_5 VARCHAR, avg_start VARCHAR) |
SELECT games FROM table_name_54 WHERE medal = "silver" AND event = "light heavyweight" | At what Games did the competitor win a Silver medal in the light heavyweight event? | CREATE TABLE table_name_54 (games VARCHAR, medal VARCHAR, event VARCHAR) |
SELECT AVG(rank__week_) FROM table_name_53 WHERE rating = 1.2 AND viewers__millions_ < 1.94 AND rank__night_ < 11 | What is the average week rank with 1.2 ratings, less than 1.94 million viewers, and a night rank less than 11? | CREATE TABLE table_name_53 (rank__week_ INTEGER, rank__night_ VARCHAR, rating VARCHAR, viewers__millions_ VARCHAR) |
SELECT time FROM table_name_75 WHERE round = "n/a" AND opponent = "mikhail ilyukhin" | What's the time for a round of n/a when the opponent is mikhail ilyukhin? | CREATE TABLE table_name_75 (time VARCHAR, round VARCHAR, opponent VARCHAR) |
SELECT MIN(position) FROM table_name_70 WHERE goals_against = 53 AND points = 26 AND goal_difference > -11 | What is the lowest position of the club with 53 goals against, 26 points, and a -11 goal difference? | CREATE TABLE table_name_70 (position INTEGER, goal_difference VARCHAR, goals_against VARCHAR, points VARCHAR) |
SELECT surface FROM table_name_42 WHERE score_in_the_final = "2–6, 6–7" | Which Surface has a Score in the final of 2–6, 6–7? | CREATE TABLE table_name_42 (surface VARCHAR, score_in_the_final VARCHAR) |
SELECT category FROM table_26611679_3 WHERE totals = "50" | Name the category for 50 totals | CREATE TABLE table_26611679_3 (category VARCHAR, totals VARCHAR) |
SELECT t1.email_address FROM customers AS t1 JOIN complaints AS t2 ON t1.customer_id = t2.customer_id GROUP BY t1.customer_id ORDER BY COUNT(*) LIMIT 1 | Find the emails of customers who has filed a complaints of the product with the most complaints. | CREATE TABLE customers (email_address VARCHAR, customer_id VARCHAR); CREATE TABLE complaints (customer_id VARCHAR) |
SELECT incumbent FROM table_27487712_1 WHERE district = "Georgia's 8th" | Who was the incumbent from georgia's 8th district? | CREATE TABLE table_27487712_1 (incumbent VARCHAR, district VARCHAR) |
SELECT release_date FROM table_name_61 WHERE subtitles = "english" AND publisher = "magna pacific" | What is the release date that has english as the subtitles, and magna pacific as the publisher? | CREATE TABLE table_name_61 (release_date VARCHAR, subtitles VARCHAR, publisher VARCHAR) |
SELECT COUNT(writer) FROM table_10470082_3 WHERE us_air_date = "September 25, 1993" | How many writers had an US air date of september 25, 1993? | CREATE TABLE table_10470082_3 (writer VARCHAR, us_air_date VARCHAR) |
SELECT driver FROM table_28046929_2 WHERE entrant = "Peugeot Sport Polska" | what are all the people where the entries is peugeot sport polska | CREATE TABLE table_28046929_2 (driver VARCHAR, entrant VARCHAR) |
SELECT call_sign FROM table_name_93 WHERE erp_w = 80 | What Call sign shows an ERP W of 80? | CREATE TABLE table_name_93 (call_sign VARCHAR, erp_w VARCHAR) |
SELECT directed_by FROM table_11951237_1 WHERE series__number = 1 | Who was the director of the Series 1 episode? | CREATE TABLE table_11951237_1 (directed_by VARCHAR, series__number VARCHAR) |
SELECT score FROM table_name_49 WHERE opponent = "kim tiilikainen" | What was the score in the match against Kim Tiilikainen? | CREATE TABLE table_name_49 (score VARCHAR, opponent VARCHAR) |
SELECT email_address, phone_number FROM customers ORDER BY email_address, phone_number | Find the emails and phone numbers of all the customers, ordered by email address and phone number. | CREATE TABLE customers (email_address VARCHAR, phone_number VARCHAR) |
SELECT tag_team FROM table_name_42 WHERE eliminated = "5" | Name Tag Team with a Eliminated of 5? | CREATE TABLE table_name_42 (tag_team VARCHAR, eliminated VARCHAR) |
SELECT winner FROM table_name_95 WHERE circuit = "mallala motor sport park" AND series = "astc round 6" | What is Winner, when Circuit is Mallala Motor Sport Park, and when Series is ASTC Round 6? | CREATE TABLE table_name_95 (winner VARCHAR, circuit VARCHAR, series VARCHAR) |
SELECT MIN(october) FROM table_name_50 WHERE record = "1–0–0" | WHich October has a Record of 1–0–0? | CREATE TABLE table_name_50 (october INTEGER, record VARCHAR) |
SELECT COUNT(species_in_the_peruvian_amazon) FROM table_11727969_1 WHERE species_in_the_world = 8411 | what's the total number of species in the peruvian amazon with 8411 species in the world | CREATE TABLE table_11727969_1 (species_in_the_peruvian_amazon VARCHAR, species_in_the_world VARCHAR) |
SELECT townland FROM table_30120619_1 WHERE civil_parish = "Monkstown" | In which townlands is the civil parish Monkstown? | CREATE TABLE table_30120619_1 (townland VARCHAR, civil_parish VARCHAR) |
SELECT championship FROM table_name_3 WHERE surface = "clay" AND opponent_in_the_final = "vitas gerulaitis" | What is the Championship with Vitas Gerulaitis as Opponent in the final in a match on Clay Surface? | CREATE TABLE table_name_3 (championship VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR) |
SELECT player FROM table_name_50 WHERE to_par = "+7" AND country = "scotland" | Which player from Scotland has a To Par score of +7? | CREATE TABLE table_name_50 (player VARCHAR, to_par VARCHAR, country VARCHAR) |
SELECT COUNT(*) FROM camera_lens WHERE focal_length_mm > 15 | How many camera lenses have a focal length longer than 15 mm? | CREATE TABLE camera_lens (focal_length_mm INTEGER) |
SELECT AVG(pos) FROM table_name_42 WHERE time = "20:39.171" | What position is associated with a Time of 20:39.171? | CREATE TABLE table_name_42 (pos INTEGER, time VARCHAR) |
SELECT player FROM table_name_77 WHERE touchdowns < 10 AND extra_points = 0 AND points > 5 | What Player has less than 10 Touchdowns and 0 Extra points and more than 5 Points? | CREATE TABLE table_name_77 (player VARCHAR, points VARCHAR, touchdowns VARCHAR, extra_points VARCHAR) |
SELECT home_team FROM table_name_80 WHERE away_team = "geelong" | Who is the home side when geelong is the away side? | CREATE TABLE table_name_80 (home_team VARCHAR, away_team VARCHAR) |
SELECT MIN(points) FROM table_2865020_5 WHERE average = "1.412" | What is the minimum number of points for teams averaging 1.412? | CREATE TABLE table_2865020_5 (points INTEGER, average VARCHAR) |
SELECT COUNT(production_number) FROM table_name_24 WHERE director = "robert mckimson" AND title = "mice follies" | What is the production number for the episode directed by Robert McKimson named Mice Follies? | CREATE TABLE table_name_24 (production_number VARCHAR, director VARCHAR, title VARCHAR) |
SELECT week_5 FROM table_name_96 WHERE week_2 = "36.80" AND week_4 = "39.75" | What is week 5 when week 2 is 36.80, and week 4 is 39.75? | CREATE TABLE table_name_96 (week_5 VARCHAR, week_2 VARCHAR, week_4 VARCHAR) |
SELECT MAX(wins) FROM table_18594107_2 WHERE conceded = 18 | How many wins have conceded as 18? | CREATE TABLE table_18594107_2 (wins INTEGER, conceded VARCHAR) |
SELECT date FROM table_name_7 WHERE home = "grizzlies" AND visitor = "timberwolves" | What was the date of the game in which the home team was the Grizzlies and the visiting team was the Timberwolves? | CREATE TABLE table_name_7 (date VARCHAR, home VARCHAR, visitor VARCHAR) |
SELECT position_in_table FROM table_name_60 WHERE outgoing_manager = "lászló dajka" | What is the position that has the outgoing manager lászló Dajka? | CREATE TABLE table_name_60 (position_in_table VARCHAR, outgoing_manager VARCHAR) |
SELECT to_par FROM table_name_76 WHERE country = "united states" AND place = "t1" | What is the to par of the player from the United States with a t1 place? | CREATE TABLE table_name_76 (to_par VARCHAR, country VARCHAR, place VARCHAR) |
SELECT frequency FROM table_name_5 WHERE power__kw_ = "40kw" | Which frequency has 40kw power? | CREATE TABLE table_name_5 (frequency VARCHAR, power__kw_ VARCHAR) |
SELECT outcome FROM table_name_34 WHERE venue = "india open" | What was the outcome for the India Open? | CREATE TABLE table_name_34 (outcome VARCHAR, venue VARCHAR) |
SELECT venue FROM table_name_20 WHERE notes = "heptathlon" AND year = 1991 | Which Venue has a Notes of heptathlon, and a Year of 1991? | CREATE TABLE table_name_20 (venue VARCHAR, notes VARCHAR, year VARCHAR) |
SELECT date_s__administered FROM table_name_38 WHERE meg_whitman = "60%" | When did Meg Whitman get 60%? | CREATE TABLE table_name_38 (date_s__administered VARCHAR, meg_whitman VARCHAR) |
SELECT republican FROM table_name_47 WHERE sample_size > 1087 AND democrat = "hillary clinton" AND margin_of_error = 2.6 | Who was the republican when hillary clinton was the democrat and the sample size was more than 1087 with a margin of error of 2.6? | CREATE TABLE table_name_47 (republican VARCHAR, margin_of_error VARCHAR, sample_size VARCHAR, democrat VARCHAR) |
SELECT written_by FROM table_26561509_1 WHERE directed_by = "Charles Haid" AND no = 54 | The episode with the no. 54, directed by Charles Haid, is written by who? | CREATE TABLE table_26561509_1 (written_by VARCHAR, directed_by VARCHAR, no VARCHAR) |
SELECT MIN(attendance) FROM table_16119656_1 | What was the lowest no. of attendance on record? | CREATE TABLE table_16119656_1 (attendance INTEGER) |
SELECT city FROM table_name_49 WHERE year < 1907 AND venue = "old trafford" AND opposition = "sussex" | Which city held the game in Old Trafford before 1907 when the Opposition was sussex? | CREATE TABLE table_name_49 (city VARCHAR, opposition VARCHAR, year VARCHAR, venue VARCHAR) |
SELECT result FROM table_name_99 WHERE attendance = "25,418" | What was the result when the attendance was 25,418? | CREATE TABLE table_name_99 (result VARCHAR, attendance VARCHAR) |
SELECT name FROM table_name_35 WHERE total_points = "23" AND rank = "13" | Who is at rank 13 with 23 total points? | CREATE TABLE table_name_35 (name VARCHAR, total_points VARCHAR, rank VARCHAR) |
SELECT original_canadian_air_date FROM table_name_98 WHERE director = "michael tolkin" | What is the Original Canadian air-date that was directed by Michael Tolkin? | CREATE TABLE table_name_98 (original_canadian_air_date VARCHAR, director VARCHAR) |
SELECT stopping_pattern FROM table_name_50 WHERE platform = "[2777] mciver station platforms" | Which Stopping pattern has a Platform of [2777] mciver station platforms? | CREATE TABLE table_name_50 (stopping_pattern VARCHAR, platform VARCHAR) |
SELECT name, seating FROM track WHERE year_opened > 2000 ORDER BY seating | Show names and seatings, ordered by seating for all tracks opened after 2000. | CREATE TABLE track (name VARCHAR, seating VARCHAR, year_opened INTEGER) |
SELECT county FROM table_20750731_1 WHERE obama_percentage = "41.7%" | What County was the Obama% at 41.7%? | CREATE TABLE table_20750731_1 (county VARCHAR, obama_percentage VARCHAR) |
SELECT date FROM table_17118657_10 WHERE location_attendance = "UIC Pavilion 3,829" | On which date was the location/attendance UIC Pavilion 3,829 respectively? | CREATE TABLE table_17118657_10 (date VARCHAR, location_attendance VARCHAR) |
SELECT AVG(place) FROM table_name_90 WHERE draw < 2 | What place has a draw smaller than 2? | CREATE TABLE table_name_90 (place INTEGER, draw INTEGER) |
SELECT MIN(lecturers) FROM table_name_86 WHERE department = "accounting" AND full_professors < 5 | What is the least amount of lecturers in the accounting department with less than 5 full professors? | CREATE TABLE table_name_86 (lecturers INTEGER, department VARCHAR, full_professors VARCHAR) |
SELECT MAX(modified_speed__6th_gear_) FROM table_19704392_1 WHERE standard_speed__6th_gear_ = "98" | when the max speed for modified speed (6th gear) where standard speed (6th gear) is 98 | CREATE TABLE table_19704392_1 (modified_speed__6th_gear_ INTEGER, standard_speed__6th_gear_ VARCHAR) |
SELECT location FROM table_1301373_1 WHERE stadium = "Bluetongue stadium" | Where is Bluetongue Stadium located? | CREATE TABLE table_1301373_1 (location VARCHAR, stadium VARCHAR) |
SELECT college_junior_club_team__league_ FROM table_name_49 WHERE round > 6 AND position = "winger" AND player = "evgeny afanasiev" | What is the School/Junior/Club Group (Association) that has a Round bigger than 6, and a Place of winger, and a Player of evgeny afanasiev? | CREATE TABLE table_name_49 (college_junior_club_team__league_ VARCHAR, player VARCHAR, round VARCHAR, position VARCHAR) |
SELECT result FROM table_name_20 WHERE opponent = "philadelphia eagles" | What was the results against the Philadelphia Eagles? | CREATE TABLE table_name_20 (result VARCHAR, opponent VARCHAR) |
SELECT round FROM table_name_90 WHERE name = "vladimir morozov" | What round has a name of vladimir morozov? | CREATE TABLE table_name_90 (round VARCHAR, name VARCHAR) |
SELECT COUNT(sprint_classification) FROM table_25655781_17 WHERE winner = "Marco Frapporti" | How many sprint classifications are there where marco frapporti is the winner? | CREATE TABLE table_25655781_17 (sprint_classification VARCHAR, winner VARCHAR) |
SELECT transfer_fee FROM table_name_68 WHERE transfer_window = "winter" AND moving_to = "madureira" | What transfer fee has both winter as the transfer window, and Madureira as the moving to? | CREATE TABLE table_name_68 (transfer_fee VARCHAR, transfer_window VARCHAR, moving_to VARCHAR) |
SELECT SUM(cuts_made) FROM table_name_90 WHERE top_25 < 6 AND top_5 > 0 | What is the total of cuts made where the top 25 is less than 6 and the top-5 is more than 0? | CREATE TABLE table_name_90 (cuts_made INTEGER, top_25 VARCHAR, top_5 VARCHAR) |
SELECT name FROM table_1585609_2 WHERE date_of_designation = "2002-04-01" | Name thenames for 2002-04-01 | CREATE TABLE table_1585609_2 (name VARCHAR, date_of_designation VARCHAR) |
SELECT party FROM table_1341522_13 WHERE incumbent = "Sanford Bishop" | What party is Sanford Bishop a member of? | CREATE TABLE table_1341522_13 (party VARCHAR, incumbent VARCHAR) |
SELECT SUM(touchdowns) FROM table_name_31 WHERE field_goals = 0 AND player = "joe maddock" AND points < 5 | What's the number of touchdowns that there are 0 field goals, less than 5 points, and had Joe Maddock playing? | CREATE TABLE table_name_31 (touchdowns INTEGER, points VARCHAR, field_goals VARCHAR, player VARCHAR) |
SELECT pole_position FROM table_name_4 WHERE round = 9 | what is the pole position of Round 9 | CREATE TABLE table_name_4 (pole_position VARCHAR, round VARCHAR) |
SELECT MAX(week) FROM table_name_51 WHERE date = "december 14, 1986" AND attendance < 47 OFFSET 096 | When was the last time, since December 14, 1986, that the attendance was lower than 47,096? | CREATE TABLE table_name_51 (week INTEGER, date VARCHAR, attendance VARCHAR) |
SELECT MIN(injured) FROM table_name_49 WHERE place = "mayurbhanj, odisha" AND killed < 1 | What is the smallest number of injured in mayurbhanj, odisha and less than 1 killed? | CREATE TABLE table_name_49 (injured INTEGER, place VARCHAR, killed VARCHAR) |
SELECT 1 AS st_prize__$__ FROM table_11622496_1 WHERE location = "Virginia" | What is the prize money for Virginia? | CREATE TABLE table_11622496_1 (location VARCHAR) |
SELECT l1_cache FROM table_24096813_15 WHERE sspec_number = "SL2Z3, SL28Q (myA0)" | What's the l1 cache of the model with sspec number sl2z3, sl28q (mya0)? | CREATE TABLE table_24096813_15 (l1_cache VARCHAR, sspec_number VARCHAR) |
SELECT round FROM table_name_48 WHERE overall = 123 | What number round has an overall of 123? | CREATE TABLE table_name_48 (round VARCHAR, overall VARCHAR) |
SELECT b_52_model FROM table_18933037_3 WHERE unit = "441st BS, 7th BW" | When 441st bs, 7th bw is the unit what is the b-52 model? | CREATE TABLE table_18933037_3 (b_52_model VARCHAR, unit VARCHAR) |
SELECT away_team FROM table_name_29 WHERE score = "4 – 2" | What is the Away team at the game with a Score of 4 – 2? | CREATE TABLE table_name_29 (away_team VARCHAR, score VARCHAR) |
SELECT to_par FROM table_name_17 WHERE country = "united states" AND player = "fred couples" | What was the To par for United States golfer fred couples? | CREATE TABLE table_name_17 (to_par VARCHAR, country VARCHAR, player VARCHAR) |
SELECT city FROM table_name_84 WHERE iata = "per" | PER is the IATA for which city? | CREATE TABLE table_name_84 (city VARCHAR, iata VARCHAR) |
SELECT opponent FROM table_name_25 WHERE week = 12 | Who did the Raiders play in week 12? | CREATE TABLE table_name_25 (opponent VARCHAR, week VARCHAR) |
SELECT saturday FROM table_name_8 WHERE thursday = "木曜日 mokuyōbi" | Which Saturday has a Thursday of 木曜日 mokuyōbi | CREATE TABLE table_name_8 (saturday VARCHAR, thursday VARCHAR) |
SELECT MAX(round) FROM table_name_46 WHERE team = "baltimore bullets" AND pick > 6 | What is the top round for the baltimore bullets with a Pick larger than 6? | CREATE TABLE table_name_46 (round INTEGER, team VARCHAR, pick VARCHAR) |
SELECT format FROM table_name_11 WHERE date = "january 21, 2002" | Which format has january 21, 2002 as the date? | CREATE TABLE table_name_11 (format VARCHAR, date VARCHAR) |
SELECT T2.name FROM Certificate AS T1 JOIN Aircraft AS T2 ON T2.aid = T1.aid GROUP BY T1.aid ORDER BY COUNT(*) DESC LIMIT 1 | Show the name of aircraft which fewest people have its certificate. | CREATE TABLE Certificate (aid VARCHAR); CREATE TABLE Aircraft (name VARCHAR, aid VARCHAR) |
SELECT gender FROM table_name_69 WHERE decile = 6 AND roll < 179 | What gender is allowed to attend the school that has a decile of 6 and a roll that is less than 179? | CREATE TABLE table_name_69 (gender VARCHAR, decile VARCHAR, roll VARCHAR) |
SELECT report FROM table_10707142_2 WHERE race_name = "Long Beach Grand Prix" | what is the name of the report that lists the race name as long beach grand prix? | CREATE TABLE table_10707142_2 (report VARCHAR, race_name VARCHAR) |
SELECT runner_up FROM table_name_18 WHERE year = 1963 | Name the Runner-up of a Year in 1963? | CREATE TABLE table_name_18 (runner_up VARCHAR, year VARCHAR) |
SELECT COUNT(*) FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T2.firstname = "LORIA" AND T2.lastname = "ONDERSMA" | How many students does LORIA ONDERSMA teaches? | CREATE TABLE list (classroom VARCHAR); CREATE TABLE teachers (classroom VARCHAR, firstname VARCHAR, lastname VARCHAR) |
SELECT runner_s__up FROM table_name_62 WHERE tournament = "cameron park open" | Which Runner(s)-up has a Tournament of cameron park open? | CREATE TABLE table_name_62 (runner_s__up VARCHAR, tournament VARCHAR) |
SELECT club FROM table_name_95 WHERE captain = "john hutchinson" | What club captain is John Hutchinson in? | CREATE TABLE table_name_95 (club VARCHAR, captain VARCHAR) |
SELECT general_election FROM table_149330_1 WHERE votes_swing = "1.69" | Which general election had a vote swing of 1.69? | CREATE TABLE table_149330_1 (general_election VARCHAR, votes_swing VARCHAR) |
SELECT jasons_team FROM table_23292220_8 WHERE seans_team = "Reginald D. Hunter and Kelly Osbourne" | Who was on Jason's team in the episode where Sean's team was Reginald D. Hunter and Kelly Osbourne? | CREATE TABLE table_23292220_8 (jasons_team VARCHAR, seans_team VARCHAR) |
SELECT COUNT(song_choice) FROM table_25374338_1 WHERE original_artist = "Gino Paoli" | What is the song choice where the original artist is Gino Paoli? | CREATE TABLE table_25374338_1 (song_choice VARCHAR, original_artist VARCHAR) |
SELECT color_commentator FROM table_17516922_1 WHERE year = 2010 | What color commentator(s) were in 2010? | CREATE TABLE table_17516922_1 (color_commentator VARCHAR, year VARCHAR) |
SELECT MIN(yards) FROM table_name_30 WHERE avg = 7 AND long < 7 | what is the least yards when the average is 7 and the long is less than 7? | CREATE TABLE table_name_30 (yards INTEGER, avg VARCHAR, long VARCHAR) |
SELECT time FROM table_name_61 WHERE team = "kawasaki zx10 1000cc" | What time did team kawasaki zx10 1000cc have? | CREATE TABLE table_name_61 (time VARCHAR, team VARCHAR) |
SELECT MAX(number_of_truck_loads_north) FROM table_12791809_1 | What is the most number of truck loads north? | CREATE TABLE table_12791809_1 (number_of_truck_loads_north INTEGER) |
SELECT position FROM table_10015132_1 WHERE school_club_team = "Baylor" | What position did the player from Baylor play? | CREATE TABLE table_10015132_1 (position VARCHAR, school_club_team VARCHAR) |
SELECT winning_horse FROM table_name_81 WHERE winning_jockey = "rafael bejarano" | Who is the jockey for the winning horse Rafael Bejarano? | CREATE TABLE table_name_81 (winning_horse VARCHAR, winning_jockey VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.