sql
stringlengths 9
2.37k
| table
stringclasses 9
values | query
stringlengths 51
503
|
---|---|---|
SELECT "Circuit" FROM table_49880 WHERE "Winning Team" = 'carlin motorsport' AND "Winning Driver" = 'oliver turvey' AND "Date" = '24 march'
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which Circuit has the Winning Team of carlin motorsport, and the Winning Driver of oliver turvey, and a Date of 24 march?It is not neccessary to use all the tables.
|
SELECT date FROM table_name_56 WHERE opponent = "luxembourg"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What day did Yugoslavia play Luxembourg?It is not neccessary to use all the tables.
|
SELECT SUM(intakeoutput.cellvaluenumeric) FROM intakeoutput WHERE intakeoutput.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '030-30152')) AND intakeoutput.celllabel = 'fentanyl' AND intakeoutput.cellpath LIKE '%intake%' AND STRFTIME('%y-%m-%d', intakeoutput.intakeoutputtime) >= '2103-01-07'
|
CREATE TABLE INST, Here is a database schema( table schema);
|
what is the total amount of fentanyl intake that patient 030-30152 received since 01/07/2103?It is not neccessary to use all the tables.
|
SELECT MIN(attendance) FROM table_name_98 WHERE visitor = "edmonton"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the least attendance with visitor of edmontonIt is not neccessary to use all the tables.
|
SELECT route FROM table_name_14 WHERE distance = "170.8km"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the route for 170.8km distanceIt is not neccessary to use all the tables.
|
SELECT COUNT # FROM table WHERE Name = Ron Baxter
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What number (#) is associated with the Name Ron Baxter?.It is not neccessary to use all the tables.
|
SELECT name FROM building EXCEPT SELECT T1.name FROM building AS T1 JOIN institution AS T2 ON T1.building_id = T2.building_id WHERE T2.founded = 2003
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Show the names of buildings except for those having an institution founded in 2003.It is not neccessary to use all the tables.
|
SELECT date FROM table_name_90 WHERE leading_scorer = "lebron james (25)"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the date when Lebron James (25) was the lead scorer?It is not neccessary to use all the tables.
|
SELECT score FROM table_23285849_10 WHERE high_assists = "Chauncey Billups (7)"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
When chauncey billups (7) has the highest amount of assists what is the score?It is not neccessary to use all the tables.
|
SELECT result FROM table_name_79 WHERE competition = "friendly" AND date = "9 october 2010"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the result for friendly competition on 9 october 2010It is not neccessary to use all the tables.
|
SELECT Tries for FROM table WHERE Try bonus = 6 AND Tries against = 41 AND Points against = 317
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the tries when tries against were 41, try bonus was 6, and had 317 points..It is not neccessary to use all the tables.
|
SELECT title FROM table_name_83 WHERE track = 7
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the title of track 7?It is not neccessary to use all the tables.
|
SELECT nhl_team FROM table_2850912_10 WHERE player = "Ron Annear"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which team drafted Ron Annear?It is not neccessary to use all the tables.
|
SELECT Seat no 4 FROM table WHERE Election = January 25, 1967
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who was the winner of seat no 4 for the election on January 25, 1967.It is not neccessary to use all the tables.
|
SELECT Years FROM table WHERE Duration = 18 years AND Actor = patrizio rispo
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What years have a duration of 18 years, and patrizio rispo as the actor?.It is not neccessary to use all the tables.
|
SELECT Frequency FROM table WHERE Area served = katherine
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the frequency for katherine?.It is not neccessary to use all the tables.
|
SELECT township FROM table_18600760_19 WHERE latitude = "47.377790"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
how is called the township where the latitude is 47.377790It is not neccessary to use all the tables.
|
SELECT t1.treatmentname FROM (SELECT treatment.treatmentname, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM treatment WHERE treatment.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.age >= 60) AND DATETIME(treatment.treatmenttime, 'start of year') = DATETIME(CURRENT_TIME(), 'start of year', '-0 year') GROUP BY treatment.treatmentname) AS t1 WHERE t1.c1 <= 5
|
CREATE TABLE INST, Here is a database schema( table schema);
|
among the patients aged 60 or above in this year, what were the top five most frequent procedures?It is not neccessary to use all the tables.
|
SELECT COUNT(scores) FROM table_23575917_2 WHERE davids_team = "David Baddiel and Maureen Lipman"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the scores for david baddiel and maureen lipmanIt is not neccessary to use all the tables.
|
SELECT City FROM table WHERE Club = braga
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What City is the Club braga in?.It is not neccessary to use all the tables.
|
SELECT MIN(game) FROM table_name_30 WHERE record = "11-4"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which Game is the lowest one that has a Record of 11-4?It is not neccessary to use all the tables.
|
SELECT college FROM table_name_74 WHERE team = "new york jets"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What college has a team of new york jets?It is not neccessary to use all the tables.
|
SELECT AVG Elected FROM table WHERE Party = democrat AND District > 2 AND Incumbent = nydia velazquez
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What's the elected year of Nydia Velazquez in a district bigger than 2 and a democrat?.It is not neccessary to use all the tables.
|
SELECT SUM Points FROM table WHERE Poles < 0
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the points sum of the series with less than 0 poles?.It is not neccessary to use all the tables.
|
SELECT "Song" FROM table_75937 WHERE "Points" > '66' AND "Draw" > '3' AND "Rank" = '3rd'
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which song has more than 66 points, a draw greater than 3, and is ranked 3rd?It is not neccessary to use all the tables.
|
SELECT tournament FROM table_name_22 WHERE opponent_in_the_final = "nadia petrova" AND score = "6–3, 4–6, 6–1"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which tournament has an opponent in the final of nadia petrova and a score of 6–3 4–6 6–1??It is not neccessary to use all the tables.
|
SELECT msdn_integration FROM table_name_12 WHERE intellitrace = "yes"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which MSDN integration has a IntelliTrace of yes?It is not neccessary to use all the tables.
|
SELECT MAX Silver FROM table WHERE Total < 3 AND Bronze = 1 AND Gold > 0
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many silver have a Total smaller than 3, a Bronze of 1, and a Gold larger than 0?.It is not neccessary to use all the tables.
|
SELECT Date FROM table WHERE Margin of victory = 4 strokes
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the date of the 4 strokes margin of victory?.It is not neccessary to use all the tables.
|
SELECT MIN Score FROM table WHERE drop goals > 0 AND Penalties = 52 AND Number > 5
|
CREATE TABLE INST, Here is a database schema( table schema);
|
drop goals larger than 0, and a Penalties of 52, and a Number larger than 5 had what lowest score?.It is not neccessary to use all the tables.
|
SELECT lead FROM table_name_39 WHERE skip = "wang bingyu" AND event = "2009 wcc"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What was the Lead for the 2009 WCC when Wang Bingyu news was the skip?It is not neccessary to use all the tables.
|
SELECT creator FROM table_name_45 WHERE latest_stable_version = "0.5.2 (part of compiz fusion release)"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who is the Creator that has a version of 0.5.2 (part of compiz fusion release)?It is not neccessary to use all the tables.
|
SELECT MAX Pick FROM table WHERE Round = 8
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the largest pick in round 8?.It is not neccessary to use all the tables.
|
SELECT "Loss" FROM table_14745 WHERE "Date" = 'september 8'
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who did the team lose to on September 8?It is not neccessary to use all the tables.
|
SELECT COUNT(*), POSITION FROM player WHERE points < 30 GROUP BY POSITION
|
CREATE TABLE INST, Here is a database schema( table schema);
|
find the number of players whose points are lower than 30 in each position.It is not neccessary to use all the tables.
|
SELECT AVG(tries_for) FROM table_name_90 WHERE points_for < 117 AND tries_against < 48
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the average tries for less than 117 points and less than 48 tries against?It is not neccessary to use all the tables.
|
SELECT DISTINCT course.department, course.name, course.number FROM course, program, program_course WHERE course.department LIKE '%EDCURINS%' AND program_course.category LIKE '%Core%' AND program_course.course_id = course.course_id AND program.name LIKE '%CS-LSA%' AND program.program_id = program_course.program_id
|
CREATE TABLE INST, Here is a database schema( table schema);
|
For fulfilling the Core which EDCURINS classes are acceptable ?It is not neccessary to use all the tables.
|
SELECT Away team FROM table WHERE Tie no = 20
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who were the away team in tie number 20?.It is not neccessary to use all the tables.
|
SELECT AVG Year FROM table WHERE Competition = olympic games AND Venue = atlanta, united states
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which Year has a Competition of olympic games, and a Venue of atlanta, united states?.It is not neccessary to use all the tables.
|
SELECT MAX(rank) FROM table_name_4 WHERE name = "jimmy jones" AND matches < 285
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What was Jimmy Jones' rank when the matches were smaller than 285?It is not neccessary to use all the tables.
|
SELECT Record FROM table WHERE Game site = riverfront stadium
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What was their record when they played at Riverfront Stadium?.It is not neccessary to use all the tables.
|
SELECT Score FROM table WHERE Date = april 9
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Date of april 9 had what score?.It is not neccessary to use all the tables.
|
SELECT Score FROM table WHERE Outcome = runner-up AND Date = may 21, 1984
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the Score of the match on May 21, 1984 with Outcome of runner-up?.It is not neccessary to use all the tables.
|
SELECT tournament FROM table_name_63 WHERE outcome = "winner" AND date = "13 july 2013"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is Tournament when Outcome is Winner and when Date is 13 July 2013?It is not neccessary to use all the tables.
|
SELECT Date FROM table WHERE Opponents = kelly de beer eva pera
|
CREATE TABLE INST, Here is a database schema( table schema);
|
The tournament with the opponent of Kelly De Beer Eva Pera was played on what date?.It is not neccessary to use all the tables.
|
SELECT january_15_16 FROM table_25252080_3 WHERE november_3 = "133"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What number is shown for january 15-16 when november 3 is 133?It is not neccessary to use all the tables.
|
SELECT region FROM table_name_25 WHERE rank = 5
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What region has a 5 rank?It is not neccessary to use all the tables.
|
SELECT prize_money FROM table_name_60 WHERE round = "second round qualifying"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the prize money for the second round qualifying that is listed?It is not neccessary to use all the tables.
|
SELECT Class FROM table WHERE Years built = 1906-08
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What was the engine class that was built on 1906-08?.It is not neccessary to use all the tables.
|
SELECT release_date FROM table_1681535_1 WHERE title = "Destiny of the Daleks"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the release date for Destiny of the Daleks?It is not neccessary to use all the tables.
|
SELECT females FROM table WHERE Language = german
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many women speak German?.It is not neccessary to use all the tables.
|
SELECT postseason FROM table_name_20 WHERE team = "nebraska"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many postseason titles has Nebraska received?It is not neccessary to use all the tables.
|
SELECT state FROM table_name_4 WHERE mountain_peak = "west spanish peak"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which state is West Spanish Peak in?It is not neccessary to use all the tables.
|
SELECT władysławowo_, _poland FROM table_name_83 WHERE world_record = "olympic record" AND marcin_dołęga___pol__ = "olympic standard" AND snatch = "clean & jerk"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What shows for Władysławowo Poland when the world record shows olympic record a Marcin Dołęga (POL) is olympic standard and Snatch is clean & jerk?It is not neccessary to use all the tables.
|
SELECT High points FROM table WHERE Game > 59
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who had the most points in games over 59?.It is not neccessary to use all the tables.
|
SELECT date FROM table_name_6 WHERE label = "alfa records" AND catalog = "alr-28045"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the date for alfa records and catalog of alr-28045It is not neccessary to use all the tables.
|
SELECT Accreditation level FROM table WHERE Hardware Model = gt-i9100
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the Accreditation Level, when the Hardware Model is GT-I9100?.It is not neccessary to use all the tables.
|
SELECT Type/code FROM table WHERE Torque@rpm = n·m (lb·ft) @1900–3500
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which Type/code has a Torque@rpm of n·m (lb·ft) @1900–3500? Question 1.It is not neccessary to use all the tables.
|
SELECT SUM(overall) FROM table_name_99 WHERE pick__number = 10 AND college = "louisiana tech" AND round > 3
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the overall number for a pick of #10 from Louisiana Tech and a round bigger than 3?It is not neccessary to use all the tables.
|
SELECT Independent-Socialist ticket FROM table WHERE Liberal ticket = edward goodell
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who was the Independent Socialist candidate who ran against the Liberal candidate Edward Goodell?.It is not neccessary to use all the tables.
|
SELECT Circuit FROM table WHERE Winning constructor = delage
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which circuit was Delage the winning constructor for?.It is not neccessary to use all the tables.
|
SELECT winner FROM table_22384475_1 WHERE margin = "131 runs"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who won the match when the margin was 131 runs?It is not neccessary to use all the tables.
|
SELECT Title FROM table WHERE Original air date = November 10, 1998
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the name of the episode that aired originally on November 10, 1998?.It is not neccessary to use all the tables.
|
SELECT T2.emp_fname, T1.prof_office FROM professor AS T1 JOIN employee AS T2 ON T1.emp_num = T2.emp_num ORDER BY T2.emp_fname
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Find the first names and offices of all professors sorted by alphabetical order of their first name.It is not neccessary to use all the tables.
|
SELECT MIN(wins) FROM table_name_5 WHERE draws > 0
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many wins were there when draws were more than 0?It is not neccessary to use all the tables.
|
SELECT T1.name, T1.long, AVG(T2.duration) FROM station AS T1 JOIN trip AS T2 ON T1.id = T2.start_station_id GROUP BY T2.start_station_id
|
CREATE TABLE INST, Here is a database schema( table schema);
|
For each station return its longitude and the average duration of trips that started from the station.It is not neccessary to use all the tables.
|
SELECT home_team FROM table_name_70 WHERE tie_no = "12"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who is the home team with a tie no. 12?It is not neccessary to use all the tables.
|
SELECT SUM Rank FROM table WHERE Player = henry shefflin AND Matches > 4
|
CREATE TABLE INST, Here is a database schema( table schema);
|
what is the rank when the player is henry shefflin and the matches is higher than 4?.It is not neccessary to use all the tables.
|
SELECT T3.name FROM physician AS T1 JOIN trained_in AS T2 ON T1.employeeid = T2.physician JOIN procedures AS T3 ON T3.code = T2.treatment WHERE T1.name = "John Wen"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Find the names of procedures which physician John Wen was trained in.It is not neccessary to use all the tables.
|
SELECT SUM(points) FROM table_name_98 WHERE year = 1978 AND chassis = "arrows fa1"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What was the total amount of points in 1978 with a Chassis of arrows fa1?It is not neccessary to use all the tables.
|
SELECT week_12 FROM table_name_1 WHERE week_1 = "maria maxine" AND week_2 = "henri satu"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the week 12 nomination that had a week 1 nomination of Maria Maxine and a week 2 nomination of Henri Satu?It is not neccessary to use all the tables.
|
SELECT record FROM table_name_41 WHERE loss = "wyatt (4–4)"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What was the record at the game that had a loss of Wyatt (4 4)?It is not neccessary to use all the tables.
|
SELECT COUNT Reservation for SC/ST FROM table WHERE Constituency No. = 191
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many reservations for sc/st are there in constituency 191?.It is not neccessary to use all the tables.
|
SELECT status FROM table_name_93 WHERE against = 10
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the status of the 10 against?It is not neccessary to use all the tables.
|
SELECT "source" FROM table_204_639 WHERE id = (SELECT id FROM table_204_639 WHERE "publication date" = 'june 2010' AND "source" = 'radio nacional de venezuela') + 1
|
CREATE TABLE INST, Here is a database schema( table schema);
|
what was the next publication after the june 2010 publication of radio nacional de venezuela ?It is not neccessary to use all the tables.
|
SELECT COUNT(game_site) FROM table_1941183_2 WHERE opponent = "Barcelona Dragons"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
In how many locations was the game against Barcelona Dragons played?It is not neccessary to use all the tables.
|
SELECT "runs" FROM table_203_226 WHERE "player" = 'andrew gale'
|
CREATE TABLE INST, Here is a database schema( table schema);
|
how many runs does andrew gale have ?It is not neccessary to use all the tables.
|
SELECT MAX Points FROM table WHERE Final Placing = 9th
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What was the max points you when when you place 9th?.It is not neccessary to use all the tables.
|
SELECT COUNT Enrollment FROM table WHERE Affiliation = public AND Founded < 1866
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the total enrollment for an affiliation of public, and was founded before 1866?.It is not neccessary to use all the tables.
|
SELECT record FROM table_name_34 WHERE loss = "lemanczyk (0–1)"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What was the record at the game that had a loss of Lemanczyk (0–1)?It is not neccessary to use all the tables.
|
SELECT NFL Recap FROM table WHERE Kickoff = 7:00pm edt
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which NFL Recap had a Kickoff of 7:00pm edt?.It is not neccessary to use all the tables.
|
SELECT COUNT Wounded FROM table WHERE Complement = 22 off 637 men
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the number of wounded figures associated with a complement of 22 off 637 men?.It is not neccessary to use all the tables.
|
SELECT Artist FROM table WHERE Label = columbia AND Standard number = cocc-72073
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which Artist has the Label of Columbia and the Standard number of COCC-72073?.It is not neccessary to use all the tables.
|
SELECT level FROM table_name_54 WHERE season > 2010
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What Level has a Season larger than 2010?It is not neccessary to use all the tables.
|
SELECT Races FROM table WHERE Series = gp2 series AND F.L. = 0 AND Position = 17th
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What races have gp2 series, 0 F.L. and a 17th position?.It is not neccessary to use all the tables.
|
SELECT COUNT First elected FROM table WHERE District = Arkansas 4
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many were first elected in the Arkansas 4 district?.It is not neccessary to use all the tables.
|
SELECT COUNT Sinhalese FROM table WHERE Indian Tamil = 177
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the total number of sinhalese for indian tamil being 177.It is not neccessary to use all the tables.
|
SELECT IHSAA Class FROM table WHERE Mascot = raiders
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which IHSAA class has a mascot of the Raiders?.It is not neccessary to use all the tables.
|
SELECT SUM Fighting Spirit FROM table WHERE Total = 13 AND Technique < 1
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How much Fighting Spirit has a Total of 13, and a Technique smaller than 1?.It is not neccessary to use all the tables.
|
SELECT m60a3_patton FROM table_name_28 WHERE leclerc = "40 rounds"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the M60A3 that has 40 rounds as Leclerc?It is not neccessary to use all the tables.
|
SELECT race FROM table_name_18 WHERE date = "26 june 2011"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What race is on 26 June 2011?It is not neccessary to use all the tables.
|
SELECT result FROM table_name_82 WHERE venue = "lord's"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the result for venue of lord'sIt is not neccessary to use all the tables.
|
SELECT type FROM table_name_50 WHERE works_number = "unknown"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is Type when Works Number is "unknown"?It is not neccessary to use all the tables.
|
SELECT result FROM table_name_6 WHERE competition = "friendly match" AND date = "october 8, 2012"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
WHat was the result of the friendly match that was played on october 8 2012?It is not neccessary to use all the tables.
|
SELECT MAX(year) FROM table_name_27 WHERE bronze = "south korea" AND silver = "philippines"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which Year is the highest one that has a Bronze of south korea and a Silver of philippines?It is not neccessary to use all the tables.
|
SELECT COUNT Viewers FROM table WHERE Draw = 2
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many items appear in the viewers column when the draw is 2?.It is not neccessary to use all the tables.
|
SELECT COUNT(rec) FROM table_name_84 WHERE player = "chris watton" AND yards < 1
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many receptions does Chris Watton with yards of less than 1?It is not neccessary to use all the tables.
|
SELECT MAX Municipalities FROM table WHERE Province of 1936 = Alto Alentejo Province (partly Ribatejo)
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the most municipalities for alto alentejo province (partly ribatejo).It is not neccessary to use all the tables.
|
SELECT Previous Rank FROM table WHERE Nationality = italy AND Points > 100
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Tell me the previous rank for italy with points more than 100.It is not neccessary to use all the tables.
|
SELECT Crowd FROM table WHERE Home team score = 9.7 (61)
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the listed crowd when the home team's score is 9.7 (61)?.It is not neccessary to use all the tables.
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.