answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|
SELECT constructor FROM table_name_56 WHERE time_retired = "engine" AND laps > 50 | Who constructed the car that has a Time/Retired of engine, and over 50 laps? | CREATE TABLE table_name_56 (constructor VARCHAR, time_retired VARCHAR, laps VARCHAR) |
SELECT SUM(member) FROM table_name_11 WHERE saros > 127 AND gamma < 1.1508 AND magnitude = 0.742 | what is the sum of the member when the saros is more than 127, gamma is less than 1.1508 and the magnitude is 0.742? | CREATE TABLE table_name_11 (member INTEGER, magnitude VARCHAR, saros VARCHAR, gamma VARCHAR) |
SELECT home FROM table_name_55 WHERE record = "32-29-8" | Who had a 32-29-8 record at home? | CREATE TABLE table_name_55 (home VARCHAR, record VARCHAR) |
SELECT COUNT(location) FROM table_16734640_1 WHERE institution = "Georgia Perimeter College" | Name the number location of georgia perimeter college | CREATE TABLE table_16734640_1 (location VARCHAR, institution VARCHAR) |
SELECT date_of_birth__age_ FROM table_name_57 WHERE caps = "3" AND name = "gabriel quak jun yi" | What is the date of birth and age of Gabriel Quak Jun Yi with 3 caps? | CREATE TABLE table_name_57 (date_of_birth__age_ VARCHAR, caps VARCHAR, name VARCHAR) |
SELECT MAX(in_de_creased_by) FROM table_name_34 WHERE percentage_in_de_crease = "100%" AND seats_2010 > 8 | Name the highest In/de-creased which has a Percentage in/de-crease of 100%, and Seats 2010 larger than 8? | CREATE TABLE table_name_34 (in_de_creased_by INTEGER, percentage_in_de_crease VARCHAR, seats_2010 VARCHAR) |
SELECT game FROM table_name_30 WHERE points < 96 AND record = "43β16β8" | Points smaller than 96, and a Record of 43β16β8 belongs to what game? | CREATE TABLE table_name_30 (game VARCHAR, points VARCHAR, record VARCHAR) |
SELECT home_team AS score FROM table_name_5 WHERE venue = "vfl park" | At the venue Vfl Park, what was the Home team score? | CREATE TABLE table_name_5 (home_team VARCHAR, venue VARCHAR) |
SELECT player FROM table_name_48 WHERE score = 66 - 74 - 76 = 216 | What is Player, when Score is "66-74-76=216"? | CREATE TABLE table_name_48 (player VARCHAR, score VARCHAR) |
SELECT AVG(no_of_customers) FROM bank WHERE state = 'Utah' | Find the average number of customers in all banks of Utah state. | CREATE TABLE bank (no_of_customers INTEGER, state VARCHAR) |
SELECT bedType, AVG(basePrice) FROM Rooms GROUP BY bedType | What is the average base price of different bed type? List bed type and average base price. | CREATE TABLE Rooms (bedType VARCHAR, basePrice INTEGER) |
SELECT AVG(attendance) FROM table_name_86 WHERE opponent = "mariners" AND record = "62-64" | What is the average attendance of the Mariners' attendance when their record was 62-64? | CREATE TABLE table_name_86 (attendance INTEGER, opponent VARCHAR, record VARCHAR) |
SELECT competition FROM table_name_87 WHERE date = "20 august 2008" | Tell me the competition of 20 august 2008 | CREATE TABLE table_name_87 (competition VARCHAR, date VARCHAR) |
SELECT score FROM table_name_77 WHERE away_team = "blackpool" | What was the score of the game when Blackpool was away? | CREATE TABLE table_name_77 (score VARCHAR, away_team VARCHAR) |
SELECT t_score FROM table_name_52 WHERE e_score = 6.625 | What is the T score of the team with an E score of 6.625? | CREATE TABLE table_name_52 (t_score VARCHAR, e_score VARCHAR) |
SELECT MAX(round) FROM table_name_36 WHERE res = "loss" AND time = "40:00" | What round has the highest Res loss, and a time of 40:00? | CREATE TABLE table_name_36 (round INTEGER, res VARCHAR, time VARCHAR) |
SELECT COUNT(against) FROM table_name_72 WHERE losses < 13 AND byes < 2 | What is the number listed under against when there were less than 13 losses and less than 2 byes? | CREATE TABLE table_name_72 (against VARCHAR, losses VARCHAR, byes VARCHAR) |
SELECT name FROM table_name_85 WHERE usgs_map = "clear lake" | Which name has a USGS Map of clear lake? | CREATE TABLE table_name_85 (name VARCHAR, usgs_map VARCHAR) |
SELECT games_played FROM table_2387461_1 WHERE points_per_game = "4.7" | How many games played have 4.7 as points per game? | CREATE TABLE table_2387461_1 (games_played VARCHAR, points_per_game VARCHAR) |
SELECT SUM(grid) FROM table_name_54 WHERE laps = 30 AND rider = "toni elias" | Can you tell me the sum of Grid that has the Laps of 30, and the Rider of toni elias? | CREATE TABLE table_name_54 (grid INTEGER, laps VARCHAR, rider VARCHAR) |
SELECT bleeding_time FROM table_221653_1 WHERE platelet_count = "Decreased or unaffected" | What is the bleeding time when the platelet count is decreased or unaffected? | CREATE TABLE table_221653_1 (bleeding_time VARCHAR, platelet_count VARCHAR) |
SELECT MAX(number_of_seasons_in_liga_mx) FROM table_name_27 WHERE club = "cruz azul" | What is the highest Number of seasons in Liga MX for Club cruz azul? | CREATE TABLE table_name_27 (number_of_seasons_in_liga_mx INTEGER, club VARCHAR) |
SELECT 2010 FROM table_name_72 WHERE rank > 15 AND 2011 = "maserati" | What is the 2010 with a rank higher than 15 and a 2011 maserati? | CREATE TABLE table_name_72 (rank VARCHAR) |
SELECT first_performance FROM table_name_38 WHERE status = "original cast" AND name = "rhys kosakowski" | What is the date of the First Performance of Rhys Kosakowski as Billy Elliot in the Original Cast? | CREATE TABLE table_name_38 (first_performance VARCHAR, status VARCHAR, name VARCHAR) |
SELECT MAX(year) FROM table_name_9 WHERE start < 2 | Name the most year with start less than 2 | CREATE TABLE table_name_9 (year INTEGER, start INTEGER) |
SELECT blank_ends FROM table_name_88 WHERE ends_won < 39 AND ends_lost > 35 AND stolen_ends = 4 | What is the Blank Ends when there are less than 39 ends won and, more than 35 ends lost, and 4 stolen ends. | CREATE TABLE table_name_88 (blank_ends VARCHAR, stolen_ends VARCHAR, ends_won VARCHAR, ends_lost VARCHAR) |
SELECT years FROM table_name_47 WHERE authority = "state integrated" AND name = "our lady sacred heart school" | What years does Our Lady Sacred Heart School, which is state integrated, have? | CREATE TABLE table_name_47 (years VARCHAR, authority VARCHAR, name VARCHAR) |
SELECT COUNT(*) FROM (SELECT * FROM postseason AS T1 JOIN team AS T2 ON T1.team_id_winner = T2.team_id_br WHERE T2.name = 'Boston Red Stockings' UNION SELECT * FROM postseason AS T1 JOIN team AS T2 ON T1.team_id_loser = T2.team_id_br WHERE T2.name = 'Boston Red Stockings') | What is the total number of postseason games that team Boston Red Stockings participated in? | CREATE TABLE postseason (team_id_winner VARCHAR, team_id_loser VARCHAR); CREATE TABLE team (team_id_br VARCHAR, name VARCHAR) |
SELECT fg_fga FROM table_23817012_6 WHERE ft_fta = "16-21" | what is the score in fg-fga if in ft-fta is 16-21 | CREATE TABLE table_23817012_6 (fg_fga VARCHAR, ft_fta VARCHAR) |
SELECT tournament FROM table_name_86 WHERE 2010 = "not held" | What is the tournament when 2010 is not held? | CREATE TABLE table_name_86 (tournament VARCHAR) |
SELECT payment_date FROM payment ORDER BY payment_date LIMIT 1 | When did the first payment happen? | CREATE TABLE payment (payment_date VARCHAR) |
SELECT date FROM table_name_68 WHERE outcome = "winner" AND opponent = "an-sophie mestach" | What is Date, when Outcome is Winner, and when Opponent is An-Sophie Mestach? | CREATE TABLE table_name_68 (date VARCHAR, outcome VARCHAR, opponent VARCHAR) |
SELECT points_for FROM table_name_36 WHERE played_in = "total" | For the played in, what are the total points? | CREATE TABLE table_name_36 (points_for VARCHAR, played_in VARCHAR) |
SELECT date FROM table_name_37 WHERE result = "draw" AND venue = "edgbaston" | Name the date for result of draw, and venue of edgbaston | CREATE TABLE table_name_37 (date VARCHAR, result VARCHAR, venue VARCHAR) |
SELECT year_s__won FROM table_name_48 WHERE total < 285 | What is Year(s) Won, when Total is less than 285? | CREATE TABLE table_name_48 (year_s__won VARCHAR, total INTEGER) |
SELECT week FROM table_name_55 WHERE date = "november 23, 1997" | Which week starts on November 23, 1997? | CREATE TABLE table_name_55 (week VARCHAR, date VARCHAR) |
SELECT circuit FROM table_name_91 WHERE fastest_lap = "lorenzo bandini" AND pole_position = "lorenzo bandini" | On which circuit does lorenzo bandini have the fastest lap as well as the pole position? | CREATE TABLE table_name_91 (circuit VARCHAR, fastest_lap VARCHAR, pole_position VARCHAR) |
SELECT location_attendance FROM table_18813011_6 WHERE date = "July 11" | What was the place and how many people attended the game on July 11? | CREATE TABLE table_18813011_6 (location_attendance VARCHAR, date VARCHAR) |
SELECT MAX(byes) FROM table_name_3 WHERE losses = 4 AND ballarat_fl = "melton" AND against < 1819 | What is the largest byes with lost games of 4 and Ballarat FL of Melton and the against less than 1819? | CREATE TABLE table_name_3 (byes INTEGER, against VARCHAR, losses VARCHAR, ballarat_fl VARCHAR) |
SELECT AVG(Num_of_Audience) FROM festival_detail | What is the average number of audience for festivals? | CREATE TABLE festival_detail (Num_of_Audience INTEGER) |
SELECT AVG(grid) FROM table_name_27 WHERE laps < 8 | What is the average grid with a number of laps smaller than 8? | CREATE TABLE table_name_27 (grid INTEGER, laps INTEGER) |
SELECT incumbent FROM table_1342149_13 WHERE first_elected = 1932 | What is the incumbent for 1932? | CREATE TABLE table_1342149_13 (incumbent VARCHAR, first_elected VARCHAR) |
SELECT away_team AS score FROM table_name_92 WHERE venue = "brunswick street oval" | What was the away score when they played at Brunswick Street Oval? | CREATE TABLE table_name_92 (away_team VARCHAR, venue VARCHAR) |
SELECT vacator FROM table_2417340_4 WHERE district = "Georgia 2nd" | What was the vacator for georgia 2nd? | CREATE TABLE table_2417340_4 (vacator VARCHAR, district VARCHAR) |
SELECT set_1 FROM table_name_73 WHERE total = "45:40" | What is the Set 1 of the 45:40 Total? | CREATE TABLE table_name_73 (set_1 VARCHAR, total VARCHAR) |
SELECT MAX(attendance) FROM table_17294353_1 WHERE opponent = "Cincinnati Bengals" | Of the times the Broncos played the Cincinnati Bengals, what was the highest attendance? | CREATE TABLE table_17294353_1 (attendance INTEGER, opponent VARCHAR) |
SELECT rank__night_ FROM table_15681686_4 WHERE rating = "4.4" | what is the rank for the rating 4.4? | CREATE TABLE table_15681686_4 (rank__night_ VARCHAR, rating VARCHAR) |
SELECT label FROM table_name_73 WHERE date = "december 2004" | What is the label for December 2004? | CREATE TABLE table_name_73 (label VARCHAR, date VARCHAR) |
SELECT notes FROM table_name_95 WHERE cardinalatial_order_and_title = "cardinal-deacon of s. maria in portico" | What are the notes of Cardinal-Deacon of S. Maria in Portico? | CREATE TABLE table_name_95 (notes VARCHAR, cardinalatial_order_and_title VARCHAR) |
SELECT visitor FROM table_name_50 WHERE series = "3 β 2" | What is the Visitor with a Series with 3 β 2? | CREATE TABLE table_name_50 (visitor VARCHAR, series VARCHAR) |
SELECT COUNT(*) FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T2.Airline = T1.uid WHERE T1.Airline = "United Airlines" AND T2.DestAirport = "ASY" | How many 'United Airlines' flights go to Airport 'ASY'? | CREATE TABLE FLIGHTS (Airline VARCHAR, DestAirport VARCHAR); CREATE TABLE AIRLINES (uid VARCHAR, Airline VARCHAR) |
SELECT rating / SHARE(18 AS β49) FROM table_25391981_20 WHERE episode = "Week 6, Part 1" | What is the rating/share for 18-49 for Week 6, Part 1? | CREATE TABLE table_25391981_20 (rating VARCHAR, episode VARCHAR) |
SELECT surface FROM table_name_76 WHERE outcome = "winner" AND score = "7β5, 7β5" | What is the Surface of the match with winner as outcome and a score of 7β5, 7β5? | CREATE TABLE table_name_76 (surface VARCHAR, outcome VARCHAR, score VARCHAR) |
SELECT year_s__of_manufacture FROM table_name_92 WHERE axle_arrangement = "2β²b n2" | Which Year(s) of manufacture has an Axle arrangement of 2β²b n2? | CREATE TABLE table_name_92 (year_s__of_manufacture VARCHAR, axle_arrangement VARCHAR) |
SELECT DISTINCT T1.first_name, T1.last_name FROM staff AS T1 JOIN rental AS T2 ON T1.staff_id = T2.staff_id JOIN customer AS T3 ON T2.customer_id = T3.customer_id WHERE T3.first_name = 'APRIL' AND T3.last_name = 'BURNS' | What is the full name of the staff member who has rented a film to a customer with the first name April and the last name Burns? | CREATE TABLE customer (customer_id VARCHAR, first_name VARCHAR, last_name VARCHAR); CREATE TABLE rental (staff_id VARCHAR, customer_id VARCHAR); CREATE TABLE staff (first_name VARCHAR, last_name VARCHAR, staff_id VARCHAR) |
SELECT windows_builders FROM table_22903426_1 WHERE name = "Apache Gump" | Name the windows builders for apache gump | CREATE TABLE table_22903426_1 (windows_builders VARCHAR, name VARCHAR) |
SELECT d_44 FROM table_name_64 WHERE d_43 = "r 14" | What is the D44 when D43 is R 14? | CREATE TABLE table_name_64 (d_44 VARCHAR, d_43 VARCHAR) |
SELECT appeared_on_album FROM table_name_90 WHERE position < 7 | When the position is less than 7, what is the appeared on album? | CREATE TABLE table_name_90 (appeared_on_album VARCHAR, position INTEGER) |
SELECT venue FROM table_name_2 WHERE away_team = "carlton" | Where did the away team Carlton play? | CREATE TABLE table_name_2 (venue VARCHAR, away_team VARCHAR) |
SELECT title FROM table_11630008_7 WHERE production_code = 514 | What is the title of production code 514? | CREATE TABLE table_11630008_7 (title VARCHAR, production_code VARCHAR) |
SELECT school_club_team FROM table_name_92 WHERE years_in_orlando = "1997β1998" | Which School/Club Team has a Years in Orlando of 1997β1998? | CREATE TABLE table_name_92 (school_club_team VARCHAR, years_in_orlando VARCHAR) |
SELECT attendance FROM table_name_26 WHERE week = 7 | What was the attendance on week 7? | CREATE TABLE table_name_26 (attendance VARCHAR, week VARCHAR) |
SELECT score FROM table_name_76 WHERE attendance > 18 OFFSET 630 | What was the score of the Kings game attended by more than 18,630 people? | CREATE TABLE table_name_76 (score VARCHAR, attendance INTEGER) |
SELECT name FROM table_name_26 WHERE ownership = "private" AND condition = "occupied" AND date = "16th century" | What is the Name of the private Castle of the 16th century which is occupied? | CREATE TABLE table_name_26 (name VARCHAR, date VARCHAR, ownership VARCHAR, condition VARCHAR) |
SELECT europe FROM table_name_68 WHERE rank = "4" AND top_goalscorer = "karl-heinz rummenigge" AND goals = 14 | What country in Europe is ranked 4, with top goal scorer Karl-Heinz Rummenigge with 14 goals? | CREATE TABLE table_name_68 (europe VARCHAR, goals VARCHAR, rank VARCHAR, top_goalscorer VARCHAR) |
SELECT cr FROM table_name_60 WHERE vehicle = "nissan primera p12 nissan almera n16" | The nissan primera p12 nissan almera n16 has what C.R.? | CREATE TABLE table_name_60 (cr VARCHAR, vehicle VARCHAR) |
SELECT attendance FROM table_name_20 WHERE arena = "arrowhead pond of anaheim" AND points < 5 | Which Attendance has an Arena of arrowhead pond of anaheim, and Points smaller than 5? | CREATE TABLE table_name_20 (attendance VARCHAR, arena VARCHAR, points VARCHAR) |
SELECT season AS premiere FROM table_1145977_2 WHERE viewers__in_millions_ = "14.71" | When did the season air where the viewership was 14.71 million? | CREATE TABLE table_1145977_2 (season VARCHAR, viewers__in_millions_ VARCHAR) |
SELECT position FROM table_name_94 WHERE school = "dr. phillips high school" | What position is for Dr. Phillips high school? | CREATE TABLE table_name_94 (position VARCHAR, school VARCHAR) |
SELECT name FROM table_name_63 WHERE score = "101" | What is Name, when Score is "101"? | CREATE TABLE table_name_63 (name VARCHAR, score VARCHAR) |
SELECT COUNT(pick) FROM table_name_60 WHERE round = "2" | What is the total pick number from round 2? | CREATE TABLE table_name_60 (pick VARCHAR, round VARCHAR) |
SELECT ground FROM table_14425454_1 WHERE crowd = "8,256" | What stadiums had an attendance of 8,256? | CREATE TABLE table_14425454_1 (ground VARCHAR, crowd VARCHAR) |
SELECT SUM(parallel_bars) FROM table_name_87 WHERE floor_exercise > 9.137 AND horizontal_bar = 9.225 AND vault > 9.5 | what was the score of the parallel bars with a floor exercise score more than 9.137, vault more than 9.5 and horizontal bar of 9.225? | CREATE TABLE table_name_87 (parallel_bars INTEGER, vault VARCHAR, floor_exercise VARCHAR, horizontal_bar VARCHAR) |
SELECT country FROM table_name_88 WHERE place = "t6" AND player = "sean o'hair" | What country has t6 as the place, with sean o'hair as the player? | CREATE TABLE table_name_88 (country VARCHAR, place VARCHAR, player VARCHAR) |
SELECT date FROM table_17288825_6 WHERE high_assists = "Tracy McGrady (8)" | When tracy mcgrady (8) is leading in assists what is the date? | CREATE TABLE table_17288825_6 (date VARCHAR, high_assists VARCHAR) |
SELECT other FROM table_name_21 WHERE christianity = "10.24%" | What is the other value associated with a Christianity value of 10.24%? | CREATE TABLE table_name_21 (other VARCHAR, christianity VARCHAR) |
SELECT T1.facility_code FROM Apartment_Facilities AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T2.bedroom_count > 4 | Show the facility codes of apartments with more than 4 bedrooms. | CREATE TABLE Apartment_Facilities (facility_code VARCHAR, apt_id VARCHAR); CREATE TABLE Apartments (apt_id VARCHAR, bedroom_count INTEGER) |
SELECT binary_meaning FROM table_name_91 WHERE symbol = "p" | What is the binary meaning for symbol p? | CREATE TABLE table_name_91 (binary_meaning VARCHAR, symbol VARCHAR) |
SELECT COUNT(poverty__2009__hpi_1__percentage) FROM table_name_69 WHERE gdp__ppp___2012__us$_per_capita = "11,284" | What is the sum of poverty (2009) HPI-1 % when the GDP (PPP) (2012) US$ per capita of 11,284? | CREATE TABLE table_name_69 (poverty__2009__hpi_1__percentage VARCHAR, gdp__ppp___2012__us$_per_capita VARCHAR) |
SELECT frequency FROM table_2610582_7 WHERE callsign = "DXEC-FM" | What frequency is dxec-fm? | CREATE TABLE table_2610582_7 (frequency VARCHAR, callsign VARCHAR) |
SELECT AVG(extras) FROM table_name_38 WHERE name = "muttiah muralitharan" AND runs_conceded < 353 | What is the average Extras for Muttiah Muralitharan, with less than 353 Runs Conceded? | CREATE TABLE table_name_38 (extras INTEGER, name VARCHAR, runs_conceded VARCHAR) |
SELECT T2.name, T2.capacity FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id WHERE T1.year >= 2014 GROUP BY T2.stadium_id ORDER BY COUNT(*) DESC LIMIT 1 | Show the stadium name and capacity with most number of concerts in year 2014 or after. | CREATE TABLE stadium (name VARCHAR, capacity VARCHAR, stadium_id VARCHAR); CREATE TABLE concert (stadium_id VARCHAR, year VARCHAR) |
SELECT year FROM table_name_56 WHERE points > 0 | What year has more than 0 points? | CREATE TABLE table_name_56 (year VARCHAR, points INTEGER) |
SELECT moving_to FROM table_name_78 WHERE nat = "tri" | Who is moving with the nationality of Tri? | CREATE TABLE table_name_78 (moving_to VARCHAR, nat VARCHAR) |
SELECT venue FROM table_name_20 WHERE away_team = "essendon" | What venue was essendon the away team? | CREATE TABLE table_name_20 (venue VARCHAR, away_team VARCHAR) |
SELECT candidates FROM table_1341897_23 WHERE district = "Massachusetts 6" | Name the candidates for massachusetts 6 | CREATE TABLE table_1341897_23 (candidates VARCHAR, district VARCHAR) |
SELECT * FROM hiring | Give me all the information about hiring. | CREATE TABLE hiring (Id VARCHAR) |
SELECT AVG(2000) FROM table_name_97 WHERE location = "montana" AND reservation = "fort peck indian reservation" AND 1979 < 26.8 | What shows for 2000 at the Fort Peck Indian Reservation, Montana, when the 1979 is less than 26.8? | CREATE TABLE table_name_97 (location VARCHAR, reservation VARCHAR) |
SELECT SUM(year) FROM table_name_36 WHERE length = "4:45" AND album = "les mots" | What's the total Year with a Length of 4:45 an has an Album of Les Mots? | CREATE TABLE table_name_36 (year INTEGER, length VARCHAR, album VARCHAR) |
SELECT silver FROM table_name_43 WHERE gold = "7" | How many silver medals were won the year 7 gold medals were won? | CREATE TABLE table_name_43 (silver VARCHAR, gold VARCHAR) |
SELECT format FROM table_name_23 WHERE catalog = "sbp 234999" | What is the Format of the Label with Catalog SBP 234999? | CREATE TABLE table_name_23 (format VARCHAR, catalog VARCHAR) |
SELECT MAX(legs_won) FROM table_27906667_2 WHERE player = "Alan Tabern" | How many legs were own by alan tabern? | CREATE TABLE table_27906667_2 (legs_won INTEGER, player VARCHAR) |
SELECT canterbury FROM table_name_67 WHERE central_districts = "276* m.d. crowe & p.s. briasco v (c) 1986/87" | Which of the Canterbury has a Central District of 276* M.D. Crowe & P.S. Briasco V (C) 1986/87? | CREATE TABLE table_name_67 (canterbury VARCHAR, central_districts VARCHAR) |
SELECT total_power FROM table_12983929_1 WHERE construction_finish = "14.06.1963" | What's the total power of the unit whose construction finished on 14.06.1963? | CREATE TABLE table_12983929_1 (total_power VARCHAR, construction_finish VARCHAR) |
SELECT name FROM table_name_42 WHERE type = "dead end" AND rank = "22" | What is the name of the dead end type ranked 22? | CREATE TABLE table_name_42 (name VARCHAR, type VARCHAR, rank VARCHAR) |
SELECT city FROM table_name_67 WHERE state = "oklahoma" | What city is located in Oklahoma? | CREATE TABLE table_name_67 (city VARCHAR, state VARCHAR) |
SELECT away_team FROM table_name_18 WHERE tie_no = "2" | What is the away team at the game with a Tie no of 2? | CREATE TABLE table_name_18 (away_team VARCHAR, tie_no VARCHAR) |
SELECT AVG(losses) FROM table_name_21 WHERE south_west_dfl = "branxholme-wallacedale" AND byes < 2 | Which Losses have a South West DFL of branxholme-wallacedale, and less than 2 Byes? | CREATE TABLE table_name_21 (losses INTEGER, south_west_dfl VARCHAR, byes VARCHAR) |
SELECT winnings FROM table_1671401_3 WHERE starts = 7 | name all the winnings that the start appears to be 7 | CREATE TABLE table_1671401_3 (winnings VARCHAR, starts VARCHAR) |
SELECT cancelable FROM table_name_75 WHERE attribute = "onpointerout" | For the attribute of onpointerout, what is the cancelable? | CREATE TABLE table_name_75 (cancelable VARCHAR, attribute VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.