sql
stringlengths 9
2.37k
| table
stringclasses 9
values | query
stringlengths 51
503
|
---|---|---|
SELECT SUM(billboard_200_peak) FROM table_name_70 WHERE title = "bread"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the sum of the Billboard 200 Peak scores given to the song with the Title Bread?It is not neccessary to use all the tables.
|
SELECT Years FROM table WHERE Area = rangitoto
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which years have an Area of rangitoto?.It is not neccessary to use all the tables.
|
SELECT location FROM table_name_97 WHERE event = "the national"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What's the location of the National event?It is not neccessary to use all the tables.
|
SELECT titles FROM table_25840200_1 WHERE date = "November 9" AND division = "Super Bantamweight"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What are the titles for the November 9 Super Bantamweight division?It is not neccessary to use all the tables.
|
SELECT MIN Attendance FROM table WHERE Date = 14 april 2007
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many were in attendance on 14 April 2007?.It is not neccessary to use all the tables.
|
SELECT Country FROM table WHERE Score = 72-65-73=210
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What Country scored 72-65-73=210?.It is not neccessary to use all the tables.
|
SELECT date FROM table_name_21 WHERE race = "new zealand grand prix"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the date of the race for the new zealand grand prix?It is not neccessary to use all the tables.
|
SELECT tries_for FROM table_name_31 WHERE tries_against = "correct as of 2007-10-15"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
tries against correct as of 2007-10-15 has what tries for?It is not neccessary to use all the tables.
|
SELECT 2002 FROM table WHERE 2004 = a AND 2005 = 1r
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What shows for 2002 when the 2004 is A, and the 2005 is 1r?.It is not neccessary to use all the tables.
|
SELECT COUNT(rank) FROM table_name_87 WHERE date_of_official_foundation_of_municipality > 1926 AND province = "sistan and baluchestan" AND 2006 > 567449
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the total number of Rank when Date of Official Foundation of Municipality is after 1926 when Province is "Sistan and Baluchestan" and when 2006 is greater than 567449?It is not neccessary to use all the tables.
|
SELECT Value FROM table WHERE British name = maxima
|
CREATE TABLE INST, Here is a database schema( table schema);
|
what is the value when the british name is maxima?.It is not neccessary to use all the tables.
|
SELECT Fee FROM table WHERE Previous Club = Ankaragücü
|
CREATE TABLE INST, Here is a database schema( table schema);
|
what is the fee for ankaragücü previous club.It is not neccessary to use all the tables.
|
SELECT SUM Attendance FROM table WHERE Date = july 5
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many people attended on July 5?.It is not neccessary to use all the tables.
|
SELECT Result FROM table WHERE Location = arrowhead stadium AND Loser = kansas city chiefs
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is result of the game at Arrowhead Stadium where the loser was the Kansas City Chiefs?.It is not neccessary to use all the tables.
|
SELECT Nationality, COUNT(Nationality) FROM swimmer GROUP BY Nationality
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Draw a bar chart about the distribution of Nationality and the amount of Nationality , and group by attribute Nationality.It is not neccessary to use all the tables.
|
SELECT novelty FROM table_name_40 WHERE status = "valid" AND location = "mongolia" AND name = "prenocephale"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the novel that has a valid status located in Mongolia and named Prenocephale?It is not neccessary to use all the tables.
|
SELECT road_team FROM table_name_24 WHERE game = "game 2"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
what team played in game 2It is not neccessary to use all the tables.
|
SELECT COUNT Games FROM table WHERE Total Rebounds > 1048
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many games have rebounds larger than 1048?.It is not neccessary to use all the tables.
|
SELECT MIN(points) FROM table_name_35 WHERE engine = "ford cosworth dfr (mader) 3.5 v8"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the lowest amount of points for a Ford Cosworth DFR (Mader) 3.5 V8 engine?It is not neccessary to use all the tables.
|
SELECT score_in_the_final FROM table_name_33 WHERE date = "september 25, 1994"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
On September 25 1994 what was the final score?It is not neccessary to use all the tables.
|
SELECT "Set 1" FROM table_9150 WHERE "Set 3" = '22–25'
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the score for set 1 when the score for set 3 is 22 25?It is not neccessary to use all the tables.
|
SELECT Epoch (UTC) FROM table WHERE Periselene (km) = 5,454.925
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is every entry for epoch if periselene is 5,454.925?.It is not neccessary to use all the tables.
|
SELECT "Attendance" FROM table_24350 WHERE "Date/Year" = '2011'
|
CREATE TABLE INST, Here is a database schema( table schema);
|
what is the attendance in 2011 recordsIt is not neccessary to use all the tables.
|
SELECT Career FROM table WHERE Super G = 5 AND Combined = 6
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What Career has a Super G of 5, and a Combined of 6?.It is not neccessary to use all the tables.
|
SELECT COUNT Number of editions FROM table WHERE Concept = Club Q-BASE
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many editions did Club Q-base concept have ? .It is not neccessary to use all the tables.
|
SELECT team FROM table_name_52 WHERE shirt_sponsor = "carlsberg"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What team does Carlsberg sponsor?It is not neccessary to use all the tables.
|
SELECT CountryCode, MAX(Percentage) FROM countrylanguage WHERE LANGUAGE = "Spanish" GROUP BY CountryCode
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What are the codes of countries where Spanish is spoken by the largest percentage of people?It is not neccessary to use all the tables.
|
SELECT Away team FROM table WHERE Home team = bolton wanderers
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Where Bolton Wanderers is the home team, who is the away team?.It is not neccessary to use all the tables.
|
SELECT player FROM table_name_77 WHERE position = "wide receiver" AND round = 7
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which player is a wide receiver picked in round 7?It is not neccessary to use all the tables.
|
SELECT Rating FROM table WHERE Episode = 1.04
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the rating of episode 1.04?.It is not neccessary to use all the tables.
|
SELECT Country FROM table WHERE Town = dubai
|
CREATE TABLE INST, Here is a database schema( table schema);
|
what country has dubai.It is not neccessary to use all the tables.
|
SELECT MAX(to_par) FROM table_name_89 WHERE total < 148
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which To par is the highest one that has a Total smaller than 148?It is not neccessary to use all the tables.
|
SELECT host FROM table_name_40 WHERE city = "missoula"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which host university is based in Missoula?It is not neccessary to use all the tables.
|
SELECT prescriptions.drug, prescriptions.route FROM prescriptions WHERE prescriptions.formulary_drug_cd = "BACTSSSM"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
what is drug name and drug route of drug code bactsssm?It is not neccessary to use all the tables.
|
SELECT document_name, document_id FROM Documents WHERE document_type_code = "BK"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Find names and ids of all documents with document type code BK.It is not neccessary to use all the tables.
|
SELECT ship FROM table_name_81 WHERE country = "royal navy" AND builder = "palmers shipbuilding and iron company"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What ship was built by Palmers Shipbuilding and Iron Company for the Royal Navy?It is not neccessary to use all the tables.
|
SELECT Weeks on Top FROM table WHERE Artist = omc
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many weeks on top was OMC?.It is not neccessary to use all the tables.
|
SELECT Hometown (Previous school) FROM table WHERE Height = 5'8"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the Hometown of the person with a height of 5'8"?.It is not neccessary to use all the tables.
|
SELECT MIN(year) FROM table_name_17 WHERE length = "3:50"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which Year is the lowest one that has a Length of 3:50?It is not neccessary to use all the tables.
|
SELECT T2.commod FROM resultsdata15 as T2 JOIN sampledata15 as T1 ON T1.sample_pk = T2.sample_pk WHERE T1.year = 15 GROUP BY T2.commod ORDER BY sum(T2.concen) DESC LIMIT 10
|
CREATE TABLE INST, Here is a database schema( sampledata15);
|
Which are the top 10 commodities that have the highest residue during 2015?. It is not neccessary to use all the tables.
|
SELECT winning_party_2003 FROM table_name_62 WHERE constituency = "aberdeen north"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Can you tell me the Winning party of 2003 that has the Constituency of aberdeen north?It is not neccessary to use all the tables.
|
SELECT akira FROM table_name_99 WHERE prince_devitt = "devitt (7:20)"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the Akira when Prince Devitt is Devitt (7:20)?It is not neccessary to use all the tables.
|
SELECT COUNT Enrollment FROM table WHERE Joined = 1931, 1949 1
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many different items appear in the enrollment column that joined in 1931, 1949 1?.It is not neccessary to use all the tables.
|
SELECT Attendance FROM table WHERE Week = 18
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the Attendance with a Week that is 18?.It is not neccessary to use all the tables.
|
SELECT nielsen_ranking FROM table_name_99 WHERE season = "season 8"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the Nielsen ranking for Season 8?It is not neccessary to use all the tables.
|
SELECT Name FROM table WHERE Pada 3 = ङ ng/na
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the Name of ङ ng/na?.It is not neccessary to use all the tables.
|
SELECT location FROM table_name_15 WHERE date = "september 3"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Where was the September 3 game?It is not neccessary to use all the tables.
|
SELECT venue FROM table_name_84 WHERE result = "w" AND goals = "deacon 5/5"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which venue has a Result of w and a Goal of deacon 5/5?It is not neccessary to use all the tables.
|
SELECT MIN("Draws") FROM table_11920 WHERE "Losses" = '5' AND "Byes" > '0'
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the lowest draw that has 5 losses and byes greater than 0?It is not neccessary to use all the tables.
|
SELECT Venue FROM table WHERE Competition = 2013 eaff east asian cup qualifier
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Where was the 2013 Eaff East Asian Cup Qualifier played?.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.admityear < "2187" AND prescriptions.drug = "NEO*IV*Gentamicin"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
how many patients whose admission year is less than 2187 and drug name is neo*iv*gentamicin?It is not neccessary to use all the tables.
|
SELECT race FROM table_name_91 WHERE track = "iowa speedway"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What race happened at Iowa Speedway?It is not neccessary to use all the tables.
|
SELECT Result FROM table WHERE Time = 7:00 pm
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What was the final score for the game played at 7:00 pm?.It is not neccessary to use all the tables.
|
SELECT opponent FROM table_name_93 WHERE aces < 50 AND event = "2001 davis cup"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
At the 2001 Davis Cup what Opponent had less than 50 Aces?It is not neccessary to use all the tables.
|
SELECT NFL Club FROM table WHERE Pick > 196
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What team did the player represent that was picked after 196?.It is not neccessary to use all the tables.
|
SELECT week_sent_to_third_island FROM table_11764007_2 WHERE week_arrived_on_main_island = "6"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What week was the member who arrived on the main island in week 6 sent to the third island?It is not neccessary to use all the tables.
|
SELECT stadium FROM table_name_95 WHERE date = "december 29, 2008"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What stadium was the December 29 2008 game played at?It is not neccessary to use all the tables.
|
SELECT 1998 FROM table WHERE 1994 = grand slam tournaments
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is 1998, when 1994 is Grand Slam Tournaments?.It is not neccessary to use all the tables.
|
SELECT COUNT Tournament FROM table WHERE Singles champions = Ludovic Walter
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many singles tournaments did Ludovic Walter win?.It is not neccessary to use all the tables.
|
SELECT score FROM table_name_94 WHERE surface = "hard" AND opponent_in_the_final = "irena pavlovic"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What was the score when the opponent was irena pavlovic and the surface was hard?It is not neccessary to use all the tables.
|
SELECT Record FROM table WHERE Visitor = chicago black hawks AND Date = april 17
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is Record, when Visitor is "Chicago Black Hawks", and when Date is "April 17"?.It is not neccessary to use all the tables.
|
SELECT power__kw_ FROM table_27588823_2 WHERE callsign = "DWZF"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How much power does dwzf have?It is not neccessary to use all the tables.
|
SELECT SUM(budget) FROM department WHERE dept_name = 'Marketing' OR dept_name = 'Finance'
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Find the total budgets of the Marketing or Finance department.It is not neccessary to use all the tables.
|
SELECT AVG Bronze FROM table WHERE Gold < 0
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the average bronze for less than 0 gold?.It is not neccessary to use all the tables.
|
SELECT COUNT(english_gloss) FROM table_1499774_5 WHERE northern_lakota = "wakȟáŋyeža"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the number of english gloss for wakȟáŋyežaIt is not neccessary to use all the tables.
|
SELECT MAX(2007 AS _budget_in_billions_of_dollars) FROM table_name_35 WHERE order_of_succession = "3"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What was the highest 2007 budget when the order of succession was 3?It is not neccessary to use all the tables.
|
SELECT outcome FROM table_name_92 WHERE opponent = "paul-henri mathieu"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
The match against Paul-Henri Mathieu had what outcome?It is not neccessary to use all the tables.
|
SELECT attendance FROM table_name_13 WHERE week = 6
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What was the attendance in week 6?It is not neccessary to use all the tables.
|
SELECT COUNT(week) FROM table_name_22 WHERE date = "september 8, 1980" AND attendance > 55 OFFSET 045
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many Weeks are on september 8 1980 and Attendances larger than 55045? Question 4It is not neccessary to use all the tables.
|
SELECT MAX(events) FROM table_name_72 WHERE cuts_made < 34 AND top_25 < 5 AND top_10 > 1
|
CREATE TABLE INST, Here is a database schema( table schema);
|
what is the highest events when the cuts made is less than 34, the top-25 is less than 5 and the top-10 is more than 1?It is not neccessary to use all the tables.
|
SELECT MAX(field_goals) FROM table_name_7 WHERE touchdowns > 1 AND extra_points > 0
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the highest field goals when there were more than 1 touchdown and 0 extra points?It is not neccessary to use all the tables.
|
SELECT Date FROM table WHERE High rebounds = Dydek (11)
|
CREATE TABLE INST, Here is a database schema( table schema);
|
When dydek (11) has the highest rebounds what is the date?.It is not neccessary to use all the tables.
|
SELECT european_competitions FROM table_name_49 WHERE tier = 2 AND season = "2004–05"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Tier of 2 and a Season of 2004–05 is what European competitions?It is not neccessary to use all the tables.
|
SELECT date FROM table_name_42 WHERE home_team = "middlesbrough"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the Date of the Middlesbrough Home game?It is not neccessary to use all the tables.
|
SELECT pi_code FROM table_name_54 WHERE area = "hindhead"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the PI code in the hindhead area?It is not neccessary to use all the tables.
|
SELECT image_attachment FROM table_name_44 WHERE threaded = "yes" AND calendar = "yes"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which Image attachment has a Threaded of yes and a Calendar of yes?It is not neccessary to use all the tables.
|
SELECT Away FROM table WHERE Score = 1:2 AND Home = vida
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which Away has a Score of 1:2, and a Home of vida?.It is not neccessary to use all the tables.
|
SELECT Location FROM table WHERE Wrestler = tatsuhito takaiwa
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What location has tatsuhito takaiwa as the wrestler?.It is not neccessary to use all the tables.
|
SELECT COUNT(*) FROM professor WHERE prof_high_degree = 'Ph.D.' OR prof_high_degree = 'MA'
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many professors who has a either Ph.D. or MA degree?It is not neccessary to use all the tables.
|
SELECT Record FROM table WHERE Date = june 24
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the Record of the game on June 24?.It is not neccessary to use all the tables.
|
SELECT Position FROM table WHERE MLS Team = metrostars
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What position did the MLS team metrostars pick?.It is not neccessary to use all the tables.
|
SELECT score FROM table_name_65 WHERE to_par = "+4" AND player = "anders forsbrand"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What was Anders Forsbrand's score when the TO par is +4?It is not neccessary to use all the tables.
|
SELECT product_category_description FROM ref_product_categories WHERE product_category_code = "Spices"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Find the product category description of the product category with code "Spices".It is not neccessary to use all the tables.
|
SELECT home_team AS score FROM table_name_48 WHERE home_team = "melbourne"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is melbourne's home team score?It is not neccessary to use all the tables.
|
SELECT MAX size (cents) FROM table WHERE size (steps) = 15 AND just (cents) > 435.08
|
CREATE TABLE INST, Here is a database schema( table schema);
|
size (steps) of 15, and a just (cents) larger than 435.08 is what highest size (cents)?.It is not neccessary to use all the tables.
|
SELECT Torque FROM table WHERE 0–100km/h (sec.) = 10.9
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How much torque does the engine that has a 10.9 0-100km/h (sec) rating have?.It is not neccessary to use all the tables.
|
SELECT Teams that can still qualify FROM table WHERE Teams that have secured qualification = 0 AND Teams started = 52
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many teams can still qualify when there are 0 teams that have secured qualification and 52 teams started?.It is not neccessary to use all the tables.
|
SELECT Seats FROM table WHERE Election < 2004 AND Share of votes = 3.4%
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many seats did the election before 2004 with 3.4% share of votes have?.It is not neccessary to use all the tables.
|
SELECT Stadium FROM table WHERE Result = w 20–16
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What Stadium had a Result of w 20–16?.It is not neccessary to use all the tables.
|
SELECT COUNT(round) FROM table_name_66 WHERE overall > 17 AND position = "quarterback"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many rounds have an Overall larger than 17 and a Position of quarterback?It is not neccessary to use all the tables.
|
SELECT role FROM table_name_4 WHERE program = "the bionic woman"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What's the roles of the Bionic Woman?It is not neccessary to use all the tables.
|
SELECT country FROM table_name_94 WHERE player = "david graham"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What country is David Graham from?It is not neccessary to use all the tables.
|
SELECT Result FROM table WHERE Opponent = Alexander Shvec
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the result for alexander shvec.It is not neccessary to use all the tables.
|
SELECT COUNT(released) FROM table_1180228_1 WHERE dvd_name = "River Cottage Forever"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many releases did the DVD River Cottage forever have?It is not neccessary to use all the tables.
|
SELECT name, ID FROM swimmer ORDER BY ID
|
CREATE TABLE INST, Here is a database schema( table schema);
|
A bar chart shows the distribution of name and ID , I want to order by the Y-axis in asc.It is not neccessary to use all the tables.
|
SELECT Home team score FROM table WHERE Home team = south melbourne
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What was the home team score when south melbourne was the home team?.It is not neccessary to use all the tables.
|
SELECT AVG(points) FROM table_name_54 WHERE driver = "ryan hunter-reay"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the average points that the driver Ryan Hunter-Reay has?It is not neccessary to use all the tables.
|
SELECT Date FROM table WHERE Fastest Lap = james winslow AND Race = 1 AND Winning driver = leanne tander
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is Date, when Fastest Lap is James Winslow, when Race is 1, and when Winning Driver is Leanne Tander?.It is not neccessary to use all the tables.
|
SELECT MAX Crowd FROM table WHERE Home team = collingwood
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How big was the crowd of the Home team of Collingwood?.It is not neccessary to use all the tables.
|
SELECT COUNT Year FROM table WHERE First = antonio pompa-baldi italy
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many years is Antonio Pompa-Baldi Italy first?.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.