sql
stringlengths
9
2.37k
table
stringclasses
9 values
query
stringlengths
51
503
SELECT loss FROM table_name_23 WHERE date = "july 30"
CREATE TABLE INST, Here is a database schema( table schema);
what team lost on july 30It is not neccessary to use all the tables.
SELECT "Home team score" FROM table_51357 WHERE "Away team score" = '11.9 (75)'
CREATE TABLE INST, Here is a database schema( table schema);
Which Home team score has an Away team score of 11.9 (75)?It is not neccessary to use all the tables.
SELECT Name FROM table WHERE Field = mokai
CREATE TABLE INST, Here is a database schema( table schema);
What is the Name of the power station in the Field of Mokai?.It is not neccessary to use all the tables.
SELECT MAX(bronze) FROM table_name_37 WHERE silver < 0
CREATE TABLE INST, Here is a database schema( table schema);
How many Bronze medals did the Nation with 0 Silver receive?It is not neccessary to use all the tables.
SELECT SUM(hours) FROM projects
CREATE TABLE INST, Here is a database schema( table schema);
Find the total hours of all projects.It is not neccessary to use all the tables.
SELECT londonborough FROM table_name_15 WHERE dialcode = "01992"
CREATE TABLE INST, Here is a database schema( table schema);
What Londongborough has a Dialcode of 01992?It is not neccessary to use all the tables.
SELECT name FROM table_name_88 WHERE champion = "henrik sundström"
CREATE TABLE INST, Here is a database schema( table schema);
What's the name when Henrik Sundström was champion?It is not neccessary to use all the tables.
SELECT result FROM table_name_16 WHERE party = "republican" AND first_elected = "1886" AND district = "ohio 17"
CREATE TABLE INST, Here is a database schema( table schema);
Which republican was first elected in 1886 in the district of ohio 17?It is not neccessary to use all the tables.
SELECT Leading scorer FROM table WHERE Visitor = pistons
CREATE TABLE INST, Here is a database schema( table schema);
Who was the leading scorer in the game where the visiting team was the Pistons?.It is not neccessary to use all the tables.
SELECT MIN Began operation FROM table WHERE Length (km) = sultan ismail AND Stations > 27
CREATE TABLE INST, Here is a database schema( table schema);
When is the earliest began operation with a length of sultan ismail and over 27 stations?.It is not neccessary to use all the tables.
SELECT Tournament FROM table WHERE Winner = thomas enqvist
CREATE TABLE INST, Here is a database schema( table schema);
Which tournament did Thomas Enqvist win?.It is not neccessary to use all the tables.
SELECT Attendance FROM table WHERE Loss = josh hall (0–1)
CREATE TABLE INST, Here is a database schema( table schema);
What was the attendance at game with a loss of Josh Hall (0–1)?.It is not neccessary to use all the tables.
SELECT race_name FROM table_name_90 WHERE round = 1
CREATE TABLE INST, Here is a database schema( table schema);
What is the name of the race from round 1?It is not neccessary to use all the tables.
SELECT Status FROM table WHERE Against = 24
CREATE TABLE INST, Here is a database schema( table schema);
What is the status of the match with 24 against?.It is not neccessary to use all the tables.
SELECT MAX Grid FROM table WHERE Driver = ralph firman AND Laps < 18
CREATE TABLE INST, Here is a database schema( table schema);
What is the largest grid with a Driver of ralph firman, and a Lap smaller than 18?.It is not neccessary to use all the tables.
SELECT Film FROM table WHERE Actor = dianne wiest
CREATE TABLE INST, Here is a database schema( table schema);
What film was Dianne Wiest in?.It is not neccessary to use all the tables.
SELECT MAX(events) FROM table_name_38 WHERE top_25 = 1 AND cuts_made < 1
CREATE TABLE INST, Here is a database schema( table schema);
How many events have a Top-25 of 1 and made less than 1 cut?It is not neccessary to use all the tables.
SELECT AVG("Bronze") FROM table_55972 WHERE "Silver" = '2' AND "Total" < '5'
CREATE TABLE INST, Here is a database schema( table schema);
Which Bronze has a Silver of 2, and a Total smaller than 5?It is not neccessary to use all the tables.
SELECT tournament FROM table_name_21 WHERE winning_score = –10(68 - 71 - 69 - 70 = 278)
CREATE TABLE INST, Here is a database schema( table schema);
In what tournament was the winning score –10 (68-71-69-70=278)?It is not neccessary to use all the tables.
SELECT T1.lname FROM faculty AS T1 JOIN faculty_participates_in AS T2 ON T1.facid = T2.facid JOIN activity AS T3 ON T2.actid = T2.actid WHERE T3.activity_name = 'Canoeing' INTERSECT SELECT T1.lname FROM faculty AS T1 JOIN faculty_participates_in AS T2 ON T1.facid = T2.facid JOIN activity AS T3 ON T2.actid = T2.actid WHERE T3.activity_name = 'Kayaking'
CREATE TABLE INST, Here is a database schema( table schema);
Find the first names of the faculty members who participate in Canoeing and Kayaking.It is not neccessary to use all the tables.
SELECT "2008" FROM table_71527 WHERE "2012" = 'grand slam tournaments'
CREATE TABLE INST, Here is a database schema( table schema);
What was the 2008 value when 2012 was Grand Slam Tournaments?It is not neccessary to use all the tables.
SELECT best_score FROM table_name_30 WHERE dance = "freestyle"
CREATE TABLE INST, Here is a database schema( table schema);
What is the best score of the dance freestyle?It is not neccessary to use all the tables.
SELECT location_attendance FROM table_23286223_8 WHERE date = "March 24"
CREATE TABLE INST, Here is a database schema( table schema);
Where was the March 24 game played?It is not neccessary to use all the tables.
SELECT SUM Altitude (meters) FROM table WHERE Range = belgica mountains AND Name = mount launoit
CREATE TABLE INST, Here is a database schema( table schema);
What is the altitude (meters) is associated with the Name Mount Launoit, with the range as Belgica Mountains?.It is not neccessary to use all the tables.
SELECT SUM Area km² FROM table WHERE Density Population per km² = 36 AND Population > 3,546
CREATE TABLE INST, Here is a database schema( table schema);
What is the Area of the town with a Population Density of 36 km and a population greater than 3,546?.It is not neccessary to use all the tables.
SELECT team FROM table_name_99 WHERE shirt_sponsor = "tulip computers nv"
CREATE TABLE INST, Here is a database schema( table schema);
What is the name of the team that Tulip Computers NV sponsors?It is not neccessary to use all the tables.
SELECT series_number FROM table_14330096_3 WHERE writer = "Julian Unthank"
CREATE TABLE INST, Here is a database schema( table schema);
What number from the total number of episodes is the episode written by Julian Unthank?It is not neccessary to use all the tables.
SELECT drivers FROM table_name_2 WHERE rounds = "all" AND make = "lexus" AND tyre = "b" AND team = "petronas toyota team tom's"
CREATE TABLE INST, Here is a database schema( table schema);
Which drives drove a lexus made all rounds had a tyre of B and was on the team of petronas toyota team tom's?It is not neccessary to use all the tables.
SELECT Record FROM table WHERE Attendance > 19,658 AND Visitor = los angeles rams
CREATE TABLE INST, Here is a database schema( table schema);
What is the record when attendance is more than 19,658 and Los Angeles Rams are the visiting team?.It is not neccessary to use all the tables.
SELECT Notes FROM table WHERE Cylinders = 12" x 17"
CREATE TABLE INST, Here is a database schema( table schema);
What's written in the notes for the locomotives with cylinder size of 12" x 17"?.It is not neccessary to use all the tables.
SELECT Engine FROM table WHERE Example = 1985-2007 Yamaha V-Max Honda VFR800
CREATE TABLE INST, Here is a database schema( table schema);
When 1985-2007 yamaha v-max honda vfr800 is the example what is the engine is it?.It is not neccessary to use all the tables.
SELECT COUNT(season) FROM table_1850339_2 WHERE army___navy_score = "10 Dec. 2016 at Baltimore, MD (M&T Bank Stadium)"
CREATE TABLE INST, Here is a database schema( table schema);
How many different season have an Army - Navy score of 10 dec. 2016 at Baltimore MD (M&T Bank Stadium)?It is not neccessary to use all the tables.
SELECT Lead FROM table WHERE Third = hans frauenlob
CREATE TABLE INST, Here is a database schema( table schema);
Which Lead has Hans Frauenlob as a Third?.It is not neccessary to use all the tables.
SELECT Number FROM table WHERE Points < 32 AND Steals = 0
CREATE TABLE INST, Here is a database schema( table schema);
What number has 0 steals and less than 32 points?.It is not neccessary to use all the tables.
SELECT opponent FROM table_21091127_1 WHERE record = "6-2"
CREATE TABLE INST, Here is a database schema( table schema);
Which opponent has a record of 6-2?It is not neccessary to use all the tables.
SELECT DISTINCT flight.flight_id FROM fare, flight, flight_fare WHERE ((flight.flight_days IN (SELECT DAYSalias0.days_code FROM days AS DAYSalias0 WHERE DAYSalias0.day_name IN (SELECT DATE_DAYalias0.day_name FROM date_day AS DATE_DAYalias0 WHERE DATE_DAYalias0.day_number = 21 AND DATE_DAYalias0.month_number = 2 AND DATE_DAYalias0.year = 1991)) AND flight.to_airport IN (SELECT AIRPORT_SERVICEalias1.airport_code FROM airport_service AS AIRPORT_SERVICEalias1 WHERE AIRPORT_SERVICEalias1.city_code IN (SELECT CITYalias1.city_code FROM city AS CITYalias1 WHERE CITYalias1.city_name = 'MEMPHIS'))) AND flight.from_airport IN (SELECT AIRPORT_SERVICEalias0.airport_code FROM airport_service AS AIRPORT_SERVICEalias0 WHERE AIRPORT_SERVICEalias0.city_code IN (SELECT CITYalias0.city_code FROM city AS CITYalias0 WHERE CITYalias0.city_name = 'INDIANAPOLIS'))) AND fare.fare_basis_code IN (SELECT FARE_BASISalias0.fare_basis_code FROM fare_basis AS FARE_BASISalias0 WHERE FARE_BASISalias0.basis_days IN (SELECT DAYSalias1.days_code FROM days AS DAYSalias1 WHERE DAYSalias1.day_name IN (SELECT DATE_DAYalias1.day_name FROM date_day AS DATE_DAYalias1 WHERE DATE_DAYalias1.day_number = 21 AND DATE_DAYalias1.month_number = 2 AND DATE_DAYalias1.year = 1991))) AND flight_fare.fare_id = fare.fare_id AND flight.flight_id = flight_fare.flight_id
CREATE TABLE INST, Here is a database schema( table schema);
list flights from INDIANAPOLIS to MEMPHIS with fares on mondayIt is not neccessary to use all the tables.
SELECT COUNT(total_top_3_placements) FROM table_2876467_3 WHERE region_represented = "Taiwan"
CREATE TABLE INST, Here is a database schema( table schema);
How many values of total top 3 placements does Taiwan have?It is not neccessary to use all the tables.
SELECT Opponent FROM table WHERE March = 28
CREATE TABLE INST, Here is a database schema( table schema);
Which opponent was present on March 28?.It is not neccessary to use all the tables.
SELECT season FROM table_19061741_1 WHERE duration = "Day 8-36"
CREATE TABLE INST, Here is a database schema( table schema);
When day 8-36 is the duration what is the season?It is not neccessary to use all the tables.
SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, date_day, days, flight WHERE ((CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'BOSTON' AND date_day.day_number = 27 AND date_day.month_number = 8 AND date_day.year = 1991 AND days.day_name = date_day.day_name AND flight.flight_days = days.days_code AND flight.to_airport = AIRPORT_SERVICE_1.airport_code) AND CITY_0.city_code = AIRPORT_SERVICE_0.city_code AND CITY_0.city_name = 'WASHINGTON' AND flight.from_airport = AIRPORT_SERVICE_0.airport_code) AND flight.departure_time = (SELECT MAX(FLIGHTalias1.departure_time) FROM airport_service AS AIRPORT_SERVICEalias2, airport_service AS AIRPORT_SERVICEalias3, city AS CITYalias2, city AS CITYalias3, date_day AS DATE_DAYalias1, days AS DAYSalias1, flight AS FLIGHTalias1 WHERE (CITYalias3.city_code = AIRPORT_SERVICEalias3.city_code AND CITYalias3.city_name = 'BOSTON' AND DATE_DAYalias1.day_number = 27 AND DATE_DAYalias1.month_number = 8 AND DATE_DAYalias1.year = 1991 AND DAYSalias1.day_name = DATE_DAYalias1.day_name AND FLIGHTalias1.flight_days = DAYSalias1.days_code AND FLIGHTalias1.to_airport = AIRPORT_SERVICEalias3.airport_code) AND CITYalias2.city_code = AIRPORT_SERVICEalias2.city_code AND CITYalias2.city_name = 'WASHINGTON' AND FLIGHTalias1.from_airport = AIRPORT_SERVICEalias2.airport_code)
CREATE TABLE INST, Here is a database schema( table schema);
what is your last trip from WASHINGTON to BOSTON on 8 27It is not neccessary to use all the tables.
SELECT civil_parish FROM table_30120605_1 WHERE townland = "Ballymacandrick"
CREATE TABLE INST, Here is a database schema( table schema);
In which civil parish is ballymacandrick?It is not neccessary to use all the tables.
SELECT score FROM table_name_56 WHERE opponent_in_the_final = "divij sharan"
CREATE TABLE INST, Here is a database schema( table schema);
What was the score of the game against Divij Sharan?It is not neccessary to use all the tables.
SELECT number_of_electorates__2009_ FROM table_name_93 WHERE constituency_number = "188"
CREATE TABLE INST, Here is a database schema( table schema);
Which Number of electorates (2009) has 188 Constituents?It is not neccessary to use all the tables.
SELECT segment_a FROM table_15187735_6 WHERE segment_c = "s Sailboard"
CREATE TABLE INST, Here is a database schema( table schema);
What is the Segment A for when Segment C is s Sailboard?It is not neccessary to use all the tables.
SELECT Tournament FROM table WHERE Score in the final = 6–7, 2–6 AND Partner = wayne arthurs
CREATE TABLE INST, Here is a database schema( table schema);
Which tournament had a final score of 6–7, 2–6, and a Partner of wayne arthurs?.It is not neccessary to use all the tables.
SELECT Home team score FROM table WHERE Home team = Adelaide
CREATE TABLE INST, Here is a database schema( table schema);
What are the scores for games where the home team is Adelaide?.It is not neccessary to use all the tables.
SELECT Name (pinyin) FROM table WHERE Name (Wade Giles) = fu-ching
CREATE TABLE INST, Here is a database schema( table schema);
Which Name (pinyin) is named fu-ching?.It is not neccessary to use all the tables.
SELECT date FROM table_name_36 WHERE location_attendance = "madison square garden" AND game < 6 AND team = "seattle"
CREATE TABLE INST, Here is a database schema( table schema);
What is the date of the game located in Madison Square Garden when the team is Seattle and the game number is less than 6?It is not neccessary to use all the tables.
SELECT name FROM stadium WHERE name LIKE "%Bank%"
CREATE TABLE INST, Here is a database schema( table schema);
Which stadium name contains the substring "Bank"?It is not neccessary to use all the tables.
SELECT Attendance FROM table WHERE Group position = 3rd
CREATE TABLE INST, Here is a database schema( table schema);
How many people were in attendance when the group position was 3rd?.It is not neccessary to use all the tables.
SELECT "Country" FROM table_48689 WHERE "Score" = '69-70=139' AND "Player" = 'bart bryant'
CREATE TABLE INST, Here is a database schema( table schema);
What country did Bart Bryant with a score of 69-70=139 belong to?It is not neccessary to use all the tables.
SELECT record FROM table_name_59 WHERE visitor = "los angeles kings" AND date = "april 22"
CREATE TABLE INST, Here is a database schema( table schema);
On April 22 when the Los Angeles Kings where visitors what was the record?It is not neccessary to use all the tables.
SELECT category FROM table_name_18 WHERE awards = "british soap awards" AND result = "nominated"
CREATE TABLE INST, Here is a database schema( table schema);
What category of the British Soap Awards resulted in nominated?It is not neccessary to use all the tables.
SELECT country FROM table_name_93 WHERE notes = "1 vcd" AND release_title = "martial law: substitutes"
CREATE TABLE INST, Here is a database schema( table schema);
Which country had a release of 1 VCD titled Martial Law: Substitutes?It is not neccessary to use all the tables.
SELECT meet FROM table_name_33 WHERE time = "7:55.02"
CREATE TABLE INST, Here is a database schema( table schema);
What is the Meet of the Event with a Time of 7:55.02?It is not neccessary to use all the tables.
SELECT AVG Attendance FROM table WHERE Date = june 11
CREATE TABLE INST, Here is a database schema( table schema);
Name the average attendance from june 11.It is not neccessary to use all the tables.
SELECT written_by FROM table_28081876_6 WHERE original_air_date = "August 10, 2012"
CREATE TABLE INST, Here is a database schema( table schema);
Who were the authors of the episode first broadcast on August 10 2012?It is not neccessary to use all the tables.
SELECT Municipality FROM table WHERE Code = 2401
CREATE TABLE INST, Here is a database schema( table schema);
Which municipality has the code 2401?.It is not neccessary to use all the tables.
SELECT Semi-final television commentator FROM table WHERE Spokesperson = Colin Berry AND Final television commentator = Pete Murray
CREATE TABLE INST, Here is a database schema( table schema);
Who was the semi-final television commentator when the spokesperson was Colin Berry and the final television commentator was Pete Murray?.It is not neccessary to use all the tables.
SELECT first_minting FROM table_1307572_1 WHERE mass = "3.7 g"
CREATE TABLE INST, Here is a database schema( table schema);
When was the coin with the mass of 3.7 g first minted?It is not neccessary to use all the tables.
SELECT Country FROM table WHERE Name = Akiko Suzuki
CREATE TABLE INST, Here is a database schema( table schema);
Which country is akiko suzuki from?.It is not neccessary to use all the tables.
SELECT Co-driver FROM table WHERE Position = 6th AND Laps > 159
CREATE TABLE INST, Here is a database schema( table schema);
Who is the co-driver for the 6th position and more than 159 laps?.It is not neccessary to use all the tables.
SELECT SUM Silver FROM table WHERE Bronze > 3 AND Gold = 16
CREATE TABLE INST, Here is a database schema( table schema);
How many Silver medals were won in total by all those with more than 3 bronze and exactly 16 gold?.It is not neccessary to use all the tables.
SELECT Road Team FROM table WHERE Result = 91-82
CREATE TABLE INST, Here is a database schema( table schema);
What road team has 91-82 as the result?.It is not neccessary to use all the tables.
SELECT MAX Money ( $ ) FROM table WHERE Score = 69-71-70-74=284
CREATE TABLE INST, Here is a database schema( table schema);
What is the highest Money ( $ ), when Score is "69-71-70-74=284"?.It is not neccessary to use all the tables.
SELECT TV season FROM table WHERE Season finale = August 18, 2004
CREATE TABLE INST, Here is a database schema( table schema);
What tv season had a season finale of august 18, 2004?.It is not neccessary to use all the tables.
SELECT affiliation FROM table_25818630_1 WHERE constituency = "Tottenham"
CREATE TABLE INST, Here is a database schema( table schema);
What is every affiliation for the Tottenham constituency?It is not neccessary to use all the tables.
SELECT Population (1931) in 1,000s FROM table WHERE Capital = Tarnopol
CREATE TABLE INST, Here is a database schema( table schema);
Name the population when the capital is tarnopol.It is not neccessary to use all the tables.
SELECT second_member FROM table_name_15 WHERE first_party = "tory" AND year < 1804 AND first_member = "henry isherwood"
CREATE TABLE INST, Here is a database schema( table schema);
Who is the second member ewarlier than 1804 when Tory Henry Isherwood is the first member?It is not neccessary to use all the tables.
SELECT Record FROM table WHERE Res. = win AND Time = 5:00 AND Round > 3
CREATE TABLE INST, Here is a database schema( table schema);
What is the record of the match with a win res., a 5:00 time, and more than 3 rounds?.It is not neccessary to use all the tables.
SELECT Week 2 FROM table WHERE Week 1 = mandy ashford
CREATE TABLE INST, Here is a database schema( table schema);
What kind of Week 2 that has a Week 1 of mandy ashford?.It is not neccessary to use all the tables.
SELECT COUNT(*), T2.product_id FROM problems AS T1 JOIN product AS T2 ON T1.product_id = T2.product_id WHERE T1.date_problem_reported > "1986-11-13" GROUP BY T2.product_id
CREATE TABLE INST, Here is a database schema( table schema);
For each product that has problems find the number of problems reported after 1986-11-13 and the product id?It is not neccessary to use all the tables.
SELECT AVG Rank FROM table WHERE Bronze < 0
CREATE TABLE INST, Here is a database schema( table schema);
What is the rank with 0 bronze?.It is not neccessary to use all the tables.
SELECT 5:00 pm FROM table WHERE 7:00 am = good morning america
CREATE TABLE INST, Here is a database schema( table schema);
What is at 5:00 pm when at 7:00 am is good morning america?.It is not neccessary to use all the tables.
SELECT Letter FROM table WHERE British = ɒ
CREATE TABLE INST, Here is a database schema( table schema);
What is the letter for the Brisish ɒ?.It is not neccessary to use all the tables.
SELECT earnings___$__ FROM table_name_59 WHERE tournaments_played < 28 AND year = "2012"
CREATE TABLE INST, Here is a database schema( table schema);
What 2012 amount of earnings corresponds with less than 28 tournaments played?It is not neccessary to use all the tables.
SELECT Runner(s)-up FROM table WHERE Margin of victory = 3 strokes AND Tournament = lady carling open
CREATE TABLE INST, Here is a database schema( table schema);
Who is the runner(s)-up for the Lady Carling Open with 3 strokes margin of victory?.It is not neccessary to use all the tables.
SELECT COUNT Position FROM table WHERE Season = 2009
CREATE TABLE INST, Here is a database schema( table schema);
How many players with a position are listed for the 2009 season? .It is not neccessary to use all the tables.
SELECT MAX(overall) FROM table_name_8 WHERE college = "southern mississippi" AND round < 6
CREATE TABLE INST, Here is a database schema( table schema);
What is the highest overall pick from the College of Southern Mississippi that was selected before round 6?It is not neccessary to use all the tables.
SELECT FIRST_NAME, EMPLOYEE_ID FROM employees WHERE NOT DEPARTMENT_ID IN (SELECT DEPARTMENT_ID FROM departments WHERE MANAGER_ID BETWEEN 100 AND 200) ORDER BY FIRST_NAME
CREATE TABLE INST, Here is a database schema( table schema);
For those employees who do not work in departments with managers that have ids between 100 and 200, a bar chart shows the distribution of first_name and employee_id , order by the X in ascending.It is not neccessary to use all the tables.
SELECT opponent FROM table_name_7 WHERE game_site = "heinz field" AND record = "3–1"
CREATE TABLE INST, Here is a database schema( table schema);
Which Opponent has a Game site of heinz field and a Record of 3–1?It is not neccessary to use all the tables.
SELECT Venue FROM table WHERE Year = 1964
CREATE TABLE INST, Here is a database schema( table schema);
What is the venue with a competition in 1964?.It is not neccessary to use all the tables.
SELECT away_team FROM table_name_96 WHERE home_team = "melbourne"
CREATE TABLE INST, Here is a database schema( table schema);
What was the away team that played against Melbourne?It is not neccessary to use all the tables.
SELECT MIN Old membership total FROM table
CREATE TABLE INST, Here is a database schema( table schema);
What is the smallest number for old membership total?.It is not neccessary to use all the tables.
SELECT away FROM table_name_28 WHERE club = "ekranas"
CREATE TABLE INST, Here is a database schema( table schema);
The Club of Ekranas was an away with a score of what?It is not neccessary to use all the tables.
SELECT COUNT !Event FROM table WHERE Winner = clay
CREATE TABLE INST, Here is a database schema( table schema);
How many events did clay win?.It is not neccessary to use all the tables.
SELECT headquarters FROM table_1610301_1 WHERE population__2011_ = 3811738
CREATE TABLE INST, Here is a database schema( table schema);
Where is the headquarters of the place whose population in 2011 was 3811738?It is not neccessary to use all the tables.
SELECT Format FROM table WHERE Frequency = 105.5 FM
CREATE TABLE INST, Here is a database schema( table schema);
What is the format of 105.5 fm?.It is not neccessary to use all the tables.
SELECT Name FROM table WHERE Moving To = nec nijmegen
CREATE TABLE INST, Here is a database schema( table schema);
What is Name, when Moving To is "NEC Nijmegen"?.It is not neccessary to use all the tables.
SELECT COUNT(gain) FROM table_name_90 WHERE long < 4 AND name = "brandon mcrae" AND avg_g < -0.1
CREATE TABLE INST, Here is a database schema( table schema);
What is the total gain for Brandon Mcrae with a loss less than 4 and an Avg/g less than -0.1?It is not neccessary to use all the tables.
SELECT Finals FROM table WHERE 1st round = w, 3–1, mis
CREATE TABLE INST, Here is a database schema( table schema);
NAME THE Finals which has a 1st round of w, 3–1, mis?.It is not neccessary to use all the tables.
SELECT date_of_appointment FROM table_name_26 WHERE manner_of_departure = "sacked" AND outgoing_manager = "fred rutten"
CREATE TABLE INST, Here is a database schema( table schema);
What is the date of appointment of outgoing manager fred rutten who had a sacked manner of departure?It is not neccessary to use all the tables.
SELECT AVG Year FROM table WHERE Name = shri. shambu nath khajuria
CREATE TABLE INST, Here is a database schema( table schema);
What was the average year when shri. shambu nath khajuria won the padma shri awards?.It is not neccessary to use all the tables.
SELECT institution FROM table_name_44 WHERE location = "reading, pa"
CREATE TABLE INST, Here is a database schema( table schema);
Which institution is located in Reading PA?It is not neccessary to use all the tables.
SELECT COUNT Age FROM table WHERE Represent = Mitteldeutschland
CREATE TABLE INST, Here is a database schema( table schema);
How many contestants where from mitteldeutschland?.It is not neccessary to use all the tables.
SELECT COUNT(party) FROM table_1341472_49 WHERE district = "Washington 7"
CREATE TABLE INST, Here is a database schema( table schema);
how many party with district being washington 7It is not neccessary to use all the tables.
SELECT Oberliga Bayern FROM table WHERE Season = 1981-82
CREATE TABLE INST, Here is a database schema( table schema);
Which Oberliga Bayern has a Season of 1981-82?.It is not neccessary to use all the tables.
SELECT January 15-16 FROM table WHERE March 27-29 = March 29, 2006
CREATE TABLE INST, Here is a database schema( table schema);
What was the data on January 15-16 if March 27-29 is March 29, 2006?.It is not neccessary to use all the tables.
SELECT COUNT(regional_seats) FROM table_name_77 WHERE party = "snp" AND total_seats > 46
CREATE TABLE INST, Here is a database schema( table schema);
How many regional seats were there with the SNP party and where the number of total seats was bigger than 46?It is not neccessary to use all the tables.
SELECT Length FROM table WHERE Remarks = replaced by bsi-35
CREATE TABLE INST, Here is a database schema( table schema);
What is the length of the highway with remarks that it was replaced by bsi-35?.It is not neccessary to use all the tables.