sql
stringlengths 9
2.37k
| table
stringclasses 9
values | query
stringlengths 51
503
|
---|---|---|
SELECT "Date" FROM table_33703 WHERE "Away team" = 'south melbourne'
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What day is south melbourne the away side?It is not neccessary to use all the tables.
|
SELECT current_streak FROM table_name_27 WHERE last_5_meetings = "osu, 4-1"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
what is the current streak when the last 5 meetings is osu 4-1?It is not neccessary to use all the tables.
|
SELECT AVG Date FROM table WHERE Length = feet 9inches (m) AND Builder = portland terminal company
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which Date has a Length of feet 9inches (m), and a Builder of portland terminal company?.It is not neccessary to use all the tables.
|
SELECT Home team FROM table WHERE Away team = richmond
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What home team has an Away team of richmond?.It is not neccessary to use all the tables.
|
SELECT LEVEL FROM member GROUP BY LEVEL ORDER BY COUNT(*) DESC LIMIT 1
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Show the membership level with most number of members.It is not neccessary to use all the tables.
|
SELECT June 10-11 FROM table WHERE November 3 = 153
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many solar eclipse on June 10-11, while November 3 is 153?.It is not neccessary to use all the tables.
|
SELECT Province FROM table WHERE 3rd Largest = dehbarez
|
CREATE TABLE INST, Here is a database schema( table schema);
|
In which province is the 3rd largest Dehbarez?.It is not neccessary to use all the tables.
|
SELECT Place FROM table WHERE Player = gil morgan
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is Gil Morgan's Place?.It is not neccessary to use all the tables.
|
SELECT COUNT Attendance FROM table WHERE Date = november 1, 1942
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What was the attendance on November 1, 1942?.It is not neccessary to use all the tables.
|
SELECT team FROM table_name_9 WHERE record = "50–28"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What team has a Record of 50–28?It is not neccessary to use all the tables.
|
SELECT Semifinalists FROM table WHERE Runner-up = Sammy Giammalva
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who were the semifinalists when sammy giammalva was runner-up?.It is not neccessary to use all the tables.
|
SELECT SUM Asts FROM table WHERE School/Country = boston college AND Rebs > 63
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What's the sum of asts for boston college with a rebs over 63?.It is not neccessary to use all the tables.
|
SELECT venue FROM table_name_88 WHERE game = 3
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the venue of game 3?It is not neccessary to use all the tables.
|
SELECT fate_and_location FROM table_name_3 WHERE ship = "ringstad"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What was the fate and location of the Ringstad?It is not neccessary to use all the tables.
|
SELECT COUNT(candidates) FROM table_1346137_4 WHERE incumbent = "David E. Finley"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many different set of candidates were there when the incumbent was david e. finley?It is not neccessary to use all the tables.
|
SELECT (SELECT COUNT(DISTINCT t1.subject_id) FROM (SELECT admissions.subject_id, diagnoses_icd.charttime FROM diagnoses_icd JOIN admissions ON diagnoses_icd.hadm_id = admissions.hadm_id WHERE diagnoses_icd.icd9_code = (SELECT d_icd_diagnoses.icd9_code FROM d_icd_diagnoses WHERE d_icd_diagnoses.short_title = 'ath ext ntv at w claudct') AND DATETIME(diagnoses_icd.charttime) >= DATETIME(CURRENT_TIME(), '-3 year')) AS t1) - (SELECT COUNT(DISTINCT t2.subject_id) FROM (SELECT admissions.subject_id, diagnoses_icd.charttime FROM diagnoses_icd JOIN admissions ON diagnoses_icd.hadm_id = admissions.hadm_id WHERE diagnoses_icd.icd9_code = (SELECT d_icd_diagnoses.icd9_code FROM d_icd_diagnoses WHERE d_icd_diagnoses.short_title = 'ath ext ntv at w claudct') AND DATETIME(diagnoses_icd.charttime) >= DATETIME(CURRENT_TIME(), '-3 year')) AS t2 JOIN admissions ON t2.subject_id = admissions.subject_id WHERE t2.charttime < admissions.admittime AND DATETIME(admissions.admittime) >= DATETIME(CURRENT_TIME(), '-3 year') AND DATETIME(admissions.admittime) BETWEEN DATETIME(t2.charttime) AND DATETIME(t2.charttime, '+2 month'))
|
CREATE TABLE INST, Here is a database schema( table schema);
|
what is the number of patients diagnosed with ath ext ntv at w claudct who didn't come back to the hospital within 2 months since 3 years ago?It is not neccessary to use all the tables.
|
SELECT status FROM table_name_20 WHERE against > 22
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the status of the game where there was more than 22 against?It is not neccessary to use all the tables.
|
SELECT COUNT(rating) FROM table_name_70 WHERE share < 4 AND viewers__millions_ > 2.47
|
CREATE TABLE INST, Here is a database schema( table schema);
|
WHAT IS THE RATING THAT HAD A SHARE SMALLER THAN 4 AND 2.47 MILLION VIEWERS?It is not neccessary to use all the tables.
|
SELECT County_name FROM county ORDER BY Population
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Return the names of all counties sorted by population in ascending order.It is not neccessary to use all the tables.
|
SELECT report FROM table_2266230_1 WHERE year = "2003"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the report for 2003It is not neccessary to use all the tables.
|
SELECT english_title FROM table_name_68 WHERE year = 1984 AND country = "sweden"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the English title for 1984 from Sweden?It is not neccessary to use all the tables.
|
SELECT AVG Overall FROM table WHERE Pick # > 7 AND Round > 4 AND Name = glen howe
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which Overall is the average one that has a Pick # larger than 7, and a Round larger than 4, and a Name of glen howe?.It is not neccessary to use all the tables.
|
SELECT MAX(_number) FROM table_22904752_1 WHERE written_by = "David Hoselton"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many # were written by david hoselton?It is not neccessary to use all the tables.
|
SELECT Team FROM table WHERE Copa CONMEBOL 1992 = Round of 16
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the team for copa conmebol 1992 is round of 16.It is not neccessary to use all the tables.
|
SELECT tournament FROM table_name_95 WHERE opponents_in_the_final = "els callens nancy feber"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What tournament had an opponent of Els Callens Nancy Feber?It is not neccessary to use all the tables.
|
SELECT Original air date FROM table WHERE Production code = 08-02-214
|
CREATE TABLE INST, Here is a database schema( table schema);
|
what are the air dates for episodes with the production code 08-02-214.It is not neccessary to use all the tables.
|
SELECT Position FROM table WHERE Player = Jessie Clark
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What position is Jessie Clark?.It is not neccessary to use all the tables.
|
SELECT wednesday FROM table_name_16 WHERE sunday = "གཟའ་ཉི་མ།"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which Wednesday has a Sunday of ?It is not neccessary to use all the tables.
|
SELECT MAX Entered FROM table WHERE Eliminated by = rosey and the hurricane
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the highest Entered of Eliminated by of rosey and the hurricane?.It is not neccessary to use all the tables.
|
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.ethnicity = "BLACK/CAPE VERDEAN" AND prescriptions.drug = "0.45% Sodium Chloride"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
count the number of patients whose ethnicity is black/cape verdean and drug name is 0.45% sodium chloride?It is not neccessary to use all the tables.
|
SELECT class FROM table_1745843_9 WHERE part_3 = "boten"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the class for botenIt is not neccessary to use all the tables.
|
SELECT tyres FROM table_name_89 WHERE laps > 5 AND team = "nissan motorsports international"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which tyres has more than 5 laps with team nissan motorsports international?It is not neccessary to use all the tables.
|
SELECT Language FROM table WHERE Television service = reteconomy
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the Language when the Reteconomy is the television service?.It is not neccessary to use all the tables.
|
SELECT Record FROM table WHERE Score = 107–108
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the Record of the game with a Score of 107–108?.It is not neccessary to use all the tables.
|
SELECT points FROM table_name_41 WHERE "club" = "club"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many points does Club have?It is not neccessary to use all the tables.
|
SELECT COUNT(losses) FROM table_name_75 WHERE games_played < 8 AND wins < 3
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many losses occurred with less than 8 games played and less than 3 wins?It is not neccessary to use all the tables.
|
SELECT Venue FROM table WHERE Away team = south melbourne
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What venue did South Melbourne play as the away team?.It is not neccessary to use all the tables.
|
SELECT "First season of current spell in top division" FROM table_1818 WHERE "First season in top division" = '1964-65'
|
CREATE TABLE INST, Here is a database schema( table schema);
|
When was the 'first season of current spell in top division' if the first season in top division is in 1964-65?It is not neccessary to use all the tables.
|
SELECT High points FROM table WHERE High rebounds = nick collison (14)
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who scored the High points in the game with High rebounds by Nick Collison (14)?.It is not neccessary to use all the tables.
|
SELECT "Opponent" FROM table_37348 WHERE "Loss" = 'dickey (0-1)'
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who did they play when dickey (0-1) recorded the loss?It is not neccessary to use all the tables.
|
SELECT type FROM table_name_46 WHERE built = 1923
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which type of locomotive was built in 1923?It is not neccessary to use all the tables.
|
SELECT TIME_TO_STR(CreationDate, '%W') AS dow, TIME_TO_STR(CreationDate, '%A') AS dowName, 1.0 * COUNT(all AS ClosedDate) / COUNT(*) AS fractionThatHaveBeenClosed, (SELECT MAX(CASE WHEN rownum * 1.0 / numrows <= 0.9 THEN Score END) FROM (SELECT Score, ROW_NUMBER() OVER (ORDER BY Score) AS rownum, COUNT(*) OVER (PARTITION BY NULL) AS numrows FROM Posts WHERE TIME_TO_STR(CreationDate, '%W') = TIME_TO_STR(p.CreationDate, '%W') AND PostTypeId = p.PostTypeId) AS t) AS medianScore, CASE PostTypeId WHEN 1 THEN 'Q' WHEN 2 THEN 'A' END AS postType FROM Posts AS p WHERE PostTypeId < 3 GROUP BY TIME_TO_STR(CreationDate, '%W'), TIME_TO_STR(CreationDate, '%A'), PostTypeId ORDER BY PostTypeId, dow
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How posts fare, by DOW and post type.It is not neccessary to use all the tables.
|
SELECT MIN Wins FROM table
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the most wins.It is not neccessary to use all the tables.
|
SELECT Year FROM table WHERE # = 31
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What year is the player whose number is 31?.It is not neccessary to use all the tables.
|
SELECT major_third FROM table_name_20 WHERE perfect_fifth = "d"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the Major third with a Perfect fifth that is d?It is not neccessary to use all the tables.
|
SELECT AVG February FROM table WHERE Game = 64
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which February has a Game of 64?.It is not neccessary to use all the tables.
|
SELECT AVG(week) FROM table_name_99 WHERE result = "l 31-27" AND attendance < 85 OFFSET 865
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Tell me the week for result of l 31-27, and an Attendance smaller than 85,865It is not neccessary to use all the tables.
|
SELECT MIN Drawn FROM table WHERE Played > 19 AND Position < 2
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the lowest drawn that has a played greater than 19, with a position less than 2?.It is not neccessary to use all the tables.
|
SELECT Opponent FROM table WHERE Result = w 24-14
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which opponent had the result of W 24-14?.It is not neccessary to use all the tables.
|
SELECT Title FROM table WHERE Doctor = 8th AND Published = january 2003
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the title of the 8th doctor published in January 2003?.It is not neccessary to use all the tables.
|
SELECT opponent FROM table_name_77 WHERE record = "70-52"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which opponent has a record of 70-52?It is not neccessary to use all the tables.
|
SELECT Position FROM table WHERE Event = 4x400 m relay AND Venue = stuttgart , germany
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which Position has an Event of 4x400 m relay, and a Venue of stuttgart , germany?.It is not neccessary to use all the tables.
|
SELECT Country FROM table WHERE Total = 295
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which country had a total of 295?.It is not neccessary to use all the tables.
|
SELECT purpose FROM table_name_34 WHERE callsign = "6nan"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Callsign of 6nan has what purpose?It is not neccessary to use all the tables.
|
SELECT die_size__mm_2___[1] FROM table_1439045_5 WHERE model = "SGX531"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the die size(mm 2) for model sgx531?It is not neccessary to use all the tables.
|
SELECT artist FROM table_name_58 WHERE draw > 15
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which artist has a draw greater than 15?It is not neccessary to use all the tables.
|
SELECT 1893–94 FROM table WHERE 1890s = 1990s
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What years from 1893-94 that is from the 1890s to the 1990s?.It is not neccessary to use all the tables.
|
SELECT "surface" FROM table_204_47 WHERE "surface" IN ('clay', 'hard') GROUP BY "surface" ORDER BY COUNT(*) DESC LIMIT 1
|
CREATE TABLE INST, Here is a database schema( table schema);
|
has she won more doubles tournaments on clay or on hard ?It is not neccessary to use all the tables.
|
SELECT COUNT(date) FROM table_23248869_8 WHERE high_points = "David Lee (30)"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many times was the high points david lee (30)It is not neccessary to use all the tables.
|
SELECT resale FROM table_name_41 WHERE down__up_to_kbit_s_ = 24000
|
CREATE TABLE INST, Here is a database schema( table schema);
|
what is the resale when the down (up to kbit/s) is 24000?It is not neccessary to use all the tables.
|
SELECT t1.customer_name FROM customers AS t1 JOIN first_notification_of_loss AS t2 ON t1.customer_id = t2.customer_id JOIN services AS t3 ON t2.service_id = t3.service_id WHERE t3.service_name = "Close a policy" INTERSECT SELECT t1.customer_name FROM customers AS t1 JOIN first_notification_of_loss AS t2 ON t1.customer_id = t2.customer_id JOIN services AS t3 ON t2.service_id = t3.service_id WHERE t3.service_name = "New policy application"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Find the names of customers who have used both the service "Close a policy" and the service "New policy application".It is not neccessary to use all the tables.
|
SELECT MAX MINS FROM table WHERE Club = san jose earthquakes AND SHTS < 166
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the largest MINS for the San Jose Earthquakes with a SHTS less than 166?.It is not neccessary to use all the tables.
|
SELECT AVG(year) FROM table_name_14 WHERE nominee = "—" AND result = "nominated"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What year has a Nominee of — and a Result of nominated?It is not neccessary to use all the tables.
|
SELECT U.S. Acres Episode FROM table WHERE Garfield Episode 1 = Robodie II
|
CREATE TABLE INST, Here is a database schema( table schema);
|
In the first episode of Garfield titled Robodie II, what is the title of the U.S. Acres Episode?.It is not neccessary to use all the tables.
|
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.diagnosis = "RUQ PAIN" AND demographic.dob_year < "2112"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
provide the number of patients whose primary disease is ruq pain and year of birth is less than 2112?It is not neccessary to use all the tables.
|
SELECT COUNT Oricon FROM table WHERE Romaji title = rakuen -memorial tracks- (maxi-single)
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many oricon's have a romaji title of rakuen -memorial tracks- (maxi-single)?.It is not neccessary to use all the tables.
|
SELECT Time of broadcast FROM table WHERE Picture format = 4:3 AND Hours = 20:30 AND Days of the week = monday, wednesday, friday
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the Time of broadcast has a Picture format of 4:3, and Hours of 20:30, and Days of the week of monday, wednesday, friday?.It is not neccessary to use all the tables.
|
SELECT SUM Game FROM table WHERE Opponent = @ carolina hurricanes
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which Game has an Opponent of @ carolina hurricanes?.It is not neccessary to use all the tables.
|
SELECT MIN(population) FROM table_name_80 WHERE per_capita_income = "$16,330"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the lowest Population, when Per Capita Income is '$16,330'?It is not neccessary to use all the tables.
|
SELECT COUNT(pick__number) FROM table_name_39 WHERE player = "sawyer hannay"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What's sawyer hannay's total pick number?It is not neccessary to use all the tables.
|
SELECT Name FROM table WHERE Left office = january 9, 1893
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who left office on January 9, 1893.It is not neccessary to use all the tables.
|
SELECT Points classification Klasyfikacja punktowa FROM table WHERE Teams classification = Lampre-Farnese
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who won the points classification when the teams classification winner was Lampre-Farnese?.It is not neccessary to use all the tables.
|
SELECT governments FROM table_name_43 WHERE term_start = "24 september 1984"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What governments did the minister with a term start on 24 September 1984 have?It is not neccessary to use all the tables.
|
SELECT date FROM table_name_28 WHERE team = "@ detroit"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What date was the team @ Detroit?It is not neccessary to use all the tables.
|
SELECT rank FROM table_name_90 WHERE year > 1971 AND floors < 35 AND height_ft__m_ = "19.0 477 (145)"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
After 1971 what is the Rank with a Height ft (m) of 19.0 477 (145) and less than 35 Floors?It is not neccessary to use all the tables.
|
SELECT Version FROM table WHERE Format = cd
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the Version of the CD release?.It is not neccessary to use all the tables.
|
SELECT T1.customer_name FROM customers AS T1 JOIN orders AS T2 JOIN order_items AS T3 JOIN products AS T4 ON T1.customer_id = T2.customer_id AND T2.order_id = T3.order_id AND T3.product_id = T4.product_id WHERE T4.product_name = "food" GROUP BY T1.customer_id HAVING COUNT(*) >= 1
|
CREATE TABLE INST, Here is a database schema( table schema);
|
List the names of the customers who have once bought product "food".It is not neccessary to use all the tables.
|
SELECT Year FROM table WHERE Points < 1 AND Engine = cosworth v8 AND Entrant = jolly club switzerland
|
CREATE TABLE INST, Here is a database schema( table schema);
|
When were there less than 1 point with a cosworth v8 engine in jolly club switzerland?.It is not neccessary to use all the tables.
|
SELECT Team FROM table WHERE Kit manufacturer = pony AND Captain = gary mabbutt
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What team has Pony as the kit manufacturer and Gary Mabbutt as the captain?.It is not neccessary to use all the tables.
|
SELECT MAX(field_goals) FROM table_19722233_5 WHERE assists = 27
|
CREATE TABLE INST, Here is a database schema( table schema);
|
what is the highest number of goals did the player with 27 asists scoreIt is not neccessary to use all the tables.
|
SELECT COUNT(*) FROM table_203_842 WHERE "date" = 2005
|
CREATE TABLE INST, Here is a database schema( table schema);
|
what was the total number of appearances in 2005 ?It is not neccessary to use all the tables.
|
SELECT Swimsuit FROM table WHERE Evening Gown = 7.61
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the swimsuit score for the item that has 7.61 as evening gown.It is not neccessary to use all the tables.
|
SELECT school FROM table_name_89 WHERE capacity > 730 AND ofsted < 106135 AND locality = "heaton mersey"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which School has a Capacity larger than 730 and an Ofsted smaller than 106135 and a Locality of heaton mersey?It is not neccessary to use all the tables.
|
SELECT october FROM table_name_17 WHERE november = "buffy tyler"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the october when november is buffy tylerIt is not neccessary to use all the tables.
|
SELECT "Playoffs" FROM table_50808 WHERE "League" = 'npsl' AND "Open Cup" = 'did not enter' AND "Year" = '2013'
|
CREATE TABLE INST, Here is a database schema( table schema);
|
NAME THE Playoffs that HAVE a League of npsl, and a Open Cup of did not enter, and a Year of 2013?It is not neccessary to use all the tables.
|
SELECT MONTH FROM happy_hour GROUP BY MONTH ORDER BY COUNT(*) DESC LIMIT 1
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which month has the most happy hours?It is not neccessary to use all the tables.
|
SELECT MAX Year FROM table WHERE Points = 3
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which is the highest year that has 3 points?.It is not neccessary to use all the tables.
|
SELECT result FROM table_name_95 WHERE score = "4-0"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What was the result of the competition that had a score of 4-0?It is not neccessary to use all the tables.
|
SELECT Report FROM table WHERE Location = Kyalami
|
CREATE TABLE INST, Here is a database schema( table schema);
|
what is the report where the location is kyalami?.It is not neccessary to use all the tables.
|
SELECT Tries against FROM table WHERE Tries for = 62
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many tries against got the club with 62 tries for?.It is not neccessary to use all the tables.
|
SELECT rounds FROM table_name_90 WHERE engine = "ford cosworth dfv 3.0 v8" AND chassis = "751"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the round for engine of ford cosworth dfv 3.0 v8 with chassis fo 751It is not neccessary to use all the tables.
|
SELECT first_elected FROM table_1341930_10 WHERE incumbent = "Paul Rogers"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
When was Paul Rogers first elected?It is not neccessary to use all the tables.
|
SELECT AVG Crowd FROM table WHERE Venue = corio oval
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the average crowd size for corio oval?.It is not neccessary to use all the tables.
|
SELECT Home team FROM table WHERE Date = 5 October 2011
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who as the home team for game on 5 october 2011?.It is not neccessary to use all the tables.
|
SELECT SUM Lane FROM table WHERE Time = dns AND Name = christian kubusch AND Heat > 2
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What was Christian Kubusch's lane when the heat was more than 2 and time was DNS?.It is not neccessary to use all the tables.
|
SELECT MIN(number) FROM table_22705586_1
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the least numberIt is not neccessary to use all the tables.
|
SELECT Score FROM table WHERE Place = t9 AND Player = jeff sluman
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is Score, when Place is "T9", and when Player is "Jeff Sluman"?.It is not neccessary to use all the tables.
|
SELECT frequency FROM table_name_32 WHERE city_of_license = "fairview"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
what is the Frequency that has a fairview City of licenseIt is not neccessary to use all the tables.
|
SELECT Chassis FROM table WHERE Tyres = g AND Year > 1976 AND Points = 1
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which of the Chassis has Tyres of g, is after 1976, and has 1 point?.It is not neccessary to use all the tables.
|
SELECT COUNT(game) FROM table_name_12 WHERE high_rebounds = "radoslav nesterović (8)" AND high_assists = "josé calderón (9)"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What numbered game featured a High rebounds of radoslav nesterović (8) and a High assists of josé calderón (9)?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.