answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|
SELECT translated_title FROM table_name_31 WHERE norwegian_title = "steinulven" | What is the Translated Title of Steinulven? | CREATE TABLE table_name_31 (translated_title VARCHAR, norwegian_title VARCHAR) |
SELECT COUNT(purse__) AS $__ FROM table_11622255_1 WHERE winner = "Jimmy Powell (2)" | what is the total number of purse( $ ) where winner is jimmy powell (2) | CREATE TABLE table_11622255_1 (purse__ VARCHAR, winner VARCHAR) |
SELECT vmax FROM table_name_45 WHERE capacity = "1.556 cc" | What was the maximum speed of the car with 1.556 cc capacity? | CREATE TABLE table_name_45 (vmax VARCHAR, capacity VARCHAR) |
SELECT venue FROM table_name_90 WHERE score = "0-0" AND date = "april 11, 2007" | What was the location for the match held on April 11, 2007, which ended with a score of 0-0? | CREATE TABLE table_name_90 (venue VARCHAR, score VARCHAR, date VARCHAR) |
SELECT dominant_religion__2002_ FROM table_2562572_37 WHERE settlement = "Srpska Crnja" | Name the dominant religion of srpska crnja | CREATE TABLE table_2562572_37 (dominant_religion__2002_ VARCHAR, settlement VARCHAR) |
SELECT song_choice FROM table_21501565_1 WHERE theme = "Year They Were Born" | With theme the Year They Were Born, what is the song of choice? | CREATE TABLE table_21501565_1 (song_choice VARCHAR, theme VARCHAR) |
SELECT enrollment FROM table_261927_1 WHERE colors = "Green & Black" | What is the enrollment for the colors green & black? | CREATE TABLE table_261927_1 (enrollment VARCHAR, colors VARCHAR) |
SELECT nation FROM table_name_67 WHERE silver = 11 | What nation finished with 11 silver medals? | CREATE TABLE table_name_67 (nation VARCHAR, silver VARCHAR) |
SELECT name FROM table_name_61 WHERE year < 1954 AND floors > 15 | What is the name before 1954 with more than 15 floors? | CREATE TABLE table_name_61 (name VARCHAR, year VARCHAR, floors VARCHAR) |
SELECT MAX(total) FROM table_name_99 WHERE year_s__won < 1959 | What is Highest Total, when Year(s) Won is before 1959? | CREATE TABLE table_name_99 (total INTEGER, year_s__won INTEGER) |
SELECT position_in_table FROM table_name_91 WHERE team = "mons" AND replaced_by = "christophe dessy (caretaker)" | Which position is team mons who was replaced by Christophe Dessy (caretaker)? | CREATE TABLE table_name_91 (position_in_table VARCHAR, team VARCHAR, replaced_by VARCHAR) |
SELECT MIN(rank) FROM table_name_10 WHERE time = "7:52.53" | What was the rank when then time was 7:52.53? | CREATE TABLE table_name_10 (rank INTEGER, time VARCHAR) |
SELECT MAX(period) FROM table_name_19 WHERE element = "platinum" | Which highest period's element is platinum? | CREATE TABLE table_name_19 (period INTEGER, element VARCHAR) |
SELECT circuit FROM table_name_16 WHERE tyre = "d" AND pole_position = "jochen rindt" AND fastest_lap = "jackie stewart" | When Jackie Stewart had the fastest lap and Jochen Rindt held the pole position with a D tyre, what was the circuit? | CREATE TABLE table_name_16 (circuit VARCHAR, fastest_lap VARCHAR, tyre VARCHAR, pole_position VARCHAR) |
SELECT 1 AS st_member FROM table_name_82 WHERE summoned = "14 july 1302" | What is 1st Member, when Summoned is "14 July 1302"? | CREATE TABLE table_name_82 (summoned VARCHAR) |
SELECT COUNT(games) FROM table_name_13 WHERE points = 10 AND drawn > 2 | How many games have more than 10 points and more than 2 draws? | CREATE TABLE table_name_13 (games VARCHAR, points VARCHAR, drawn VARCHAR) |
SELECT wicket FROM table_name_93 WHERE batting_partners = "mohammad azharuddin and ajay jadeja" AND fielding_team = "sri lanka" | What was the wicket ranking for the match featuring partners Mohammad Azharuddin and Ajay Jadeja and also a fielding team of Sri Lanka? | CREATE TABLE table_name_93 (wicket VARCHAR, batting_partners VARCHAR, fielding_team VARCHAR) |
SELECT COUNT(player) FROM table_16494599_2 WHERE school_club_team = "DePaul" | How many players went to depaul? | CREATE TABLE table_16494599_2 (player VARCHAR, school_club_team VARCHAR) |
SELECT player FROM table_26130295_3 WHERE first_team = 1 AND number_of_selections = 2 | when number of selection is 2 and first team is 1 who are all the player | CREATE TABLE table_26130295_3 (player VARCHAR, first_team VARCHAR, number_of_selections VARCHAR) |
SELECT tv_time FROM table_name_86 WHERE attendance = "60,894" | Tell me the tv time for attendance of 60,894 | CREATE TABLE table_name_86 (tv_time VARCHAR, attendance VARCHAR) |
SELECT date FROM table_name_55 WHERE opponent = "northern ireland" | When is Northern Ireland the opponent? | CREATE TABLE table_name_55 (date VARCHAR, opponent VARCHAR) |
SELECT date_of_appointment FROM table_28164986_4 WHERE manner_of_departure = "fired" AND team = "Niger Tornadoes" | when was the next coach appointed after niger tornadoes fired their coach? | CREATE TABLE table_28164986_4 (date_of_appointment VARCHAR, manner_of_departure VARCHAR, team VARCHAR) |
SELECT player FROM table_name_20 WHERE to_par = "–2" | What Player has a To par of –2? | CREATE TABLE table_name_20 (player VARCHAR, to_par VARCHAR) |
SELECT AVG(2006) FROM table_name_47 WHERE production_year = "wheat" AND 2005 > 7340 | What is the average 2006 value for wheat with a 2005 value greater than 7340? | CREATE TABLE table_name_47 (production_year VARCHAR) |
SELECT MIN(week) FROM table_name_46 WHERE record = "2–9" | What is the value of the lowest Week with a Record of 2–9? | CREATE TABLE table_name_46 (week INTEGER, record VARCHAR) |
SELECT artist FROM table_name_41 WHERE year = "1953" | what artist won in 1953 | CREATE TABLE table_name_41 (artist VARCHAR, year VARCHAR) |
SELECT position FROM table_name_15 WHERE hometown_school = "westlake, california" | What is Posititon, when Hometown/School is "Westlake, California"? | CREATE TABLE table_name_15 (position VARCHAR, hometown_school VARCHAR) |
SELECT AVG(game) FROM table_name_96 WHERE opponent = "phoenix coyotes" AND december < 9 | Which game has an opponent of Phoenix Coyotes and was before Dec 9? | CREATE TABLE table_name_96 (game INTEGER, opponent VARCHAR, december VARCHAR) |
SELECT MIN(rank) FROM table_name_80 WHERE time = "6:36.65" | What is the least rank for athletes with a time of 6:36.65? | CREATE TABLE table_name_80 (rank INTEGER, time VARCHAR) |
SELECT MAX(silver) FROM table_name_78 WHERE "total" > 2 AND rank = "total" AND gold > 44 | What is the most silver medals when the total is more than 2 medals, and with a rank of total, and the number of gold medals is greater than 44? | CREATE TABLE table_name_78 (silver INTEGER, gold VARCHAR, rank VARCHAR) |
SELECT translation FROM table_name_47 WHERE us_customary = "0.263 pt" | What is the Translation of the US Customary value 0.263 pt? | CREATE TABLE table_name_47 (translation VARCHAR, us_customary VARCHAR) |
SELECT COUNT(total) FROM table_name_1 WHERE vuelta = 1 AND tour > 7 | How many podiums associated with 1 vuelta and over 7 tours? | CREATE TABLE table_name_1 (total VARCHAR, vuelta VARCHAR, tour VARCHAR) |
SELECT authors FROM table_name_90 WHERE novelty = "gen nov" AND location = "south africa" AND name = "criocephalosaurus" | What is Authors, when Novelty is Gen Nov, when Location is South Africa, and when Name is Criocephalosaurus? | CREATE TABLE table_name_90 (authors VARCHAR, name VARCHAR, novelty VARCHAR, location VARCHAR) |
SELECT date FROM table_name_5 WHERE goal = 5 | Tell me the date of goal 5 | CREATE TABLE table_name_5 (date VARCHAR, goal VARCHAR) |
SELECT date FROM table_name_90 WHERE game = "game 3" | Which Date has a Game of game 3? | CREATE TABLE table_name_90 (date VARCHAR, game VARCHAR) |
SELECT player FROM table_name_45 WHERE conv = "14" | which player has a conv of 14? | CREATE TABLE table_name_45 (player VARCHAR, conv VARCHAR) |
SELECT original_airdate FROM table_name_65 WHERE episode__number = "29 (7)" | When did Episode 29 (7) originally air? | CREATE TABLE table_name_65 (original_airdate VARCHAR, episode__number VARCHAR) |
SELECT college FROM table_name_64 WHERE player = "alex poythress" | What was the college for Alex Poythress? | CREATE TABLE table_name_64 (college VARCHAR, player VARCHAR) |
SELECT MAX(year) FROM table_name_95 WHERE venue = "narbonne , france" | Name the highest Year which has a Venue of narbonne , france? | CREATE TABLE table_name_95 (year INTEGER, venue VARCHAR) |
SELECT SUM(crowd) FROM table_name_54 WHERE away_team = "richmond" | How many people attended when the away team was Richmond? | CREATE TABLE table_name_54 (crowd INTEGER, away_team VARCHAR) |
SELECT SUM(upper_index_kcal__nm_3) FROM table_name_1 WHERE lower_index_mj__nm_3 > 47.91 AND fuel_gas = "propylene" AND upper_index_mj__nm_3 > 77.04 | What is the entry for Upper index Kcal/ Nm 3 for the row with an entry that has a Lower index MJ/ Nm 3 larger than 47.91, for propylene, and an Upper index MJ/ Nm 3 larger than 77.04? | CREATE TABLE table_name_1 (upper_index_kcal__nm_3 INTEGER, upper_index_mj__nm_3 VARCHAR, lower_index_mj__nm_3 VARCHAR, fuel_gas VARCHAR) |
SELECT COUNT(byes) FROM table_name_67 WHERE draws < 1 AND wins < 8 | What is the total number of byes associated with fewer than 8 wins and fewer than 1 draw? | CREATE TABLE table_name_67 (byes VARCHAR, draws VARCHAR, wins VARCHAR) |
SELECT COUNT(*), t2.name FROM hiring AS t1 JOIN shop AS t2 ON t1.shop_id = t2.shop_id GROUP BY t2.name | Find the number of employees hired in each shop; show the shop name as well. | CREATE TABLE shop (name VARCHAR, shop_id VARCHAR); CREATE TABLE hiring (shop_id VARCHAR) |
SELECT away_team FROM table_name_14 WHERE crowd > 29 OFFSET 000 | Which Away team played when they had a Crowd of over 29,000 people? | CREATE TABLE table_name_14 (away_team VARCHAR, crowd INTEGER) |
SELECT player FROM table_name_4 WHERE score = 71 | Which player scored 71? | CREATE TABLE table_name_4 (player VARCHAR, score VARCHAR) |
SELECT MAX(innings) FROM table_28846752_4 WHERE highest_score = "72" | What is the innings when the highest score is 72? | CREATE TABLE table_28846752_4 (innings INTEGER, highest_score VARCHAR) |
SELECT COUNT(arabic_form) FROM table_2784232_1 WHERE morphological_category = "1st. plur. perfect" | How many Arabic forms are there for the 1st. plur. perfect category? | CREATE TABLE table_2784232_1 (arabic_form VARCHAR, morphological_category VARCHAR) |
SELECT MIN(grid) FROM table_name_42 WHERE team = "germany" AND laps < 45 | Which Grid is the lowest one that has a Team of germany, and Laps smaller than 45? | CREATE TABLE table_name_42 (grid INTEGER, team VARCHAR, laps VARCHAR) |
SELECT coach FROM table_18461635_1 WHERE location = "Leicester" | Who is the coach of the team in Leicester? | CREATE TABLE table_18461635_1 (coach VARCHAR, location VARCHAR) |
SELECT income_class FROM table_1691800_2 WHERE area__km²_ = 75 | what is the income class for area 75? | CREATE TABLE table_1691800_2 (income_class VARCHAR, area__km²_ VARCHAR) |
SELECT AVG(grid) FROM table_name_96 WHERE driver = "piers courage" | What is the average grid for piers courage? | CREATE TABLE table_name_96 (grid INTEGER, driver VARCHAR) |
SELECT COUNT(drawn) FROM table_name_55 WHERE difference = "3" AND points < 52 | How many Drawn have a Difference of 3, and Points smaller than 52? | CREATE TABLE table_name_55 (drawn VARCHAR, difference VARCHAR, points VARCHAR) |
SELECT COUNT(poles) FROM table_15852257_1 WHERE series = "Formula Renault 2.0 Eurocup" AND final_placing = "10th" | What is the total number of poles values in the Formula Renault 2.0 Eurocup with a 10th final placing? | CREATE TABLE table_15852257_1 (poles VARCHAR, series VARCHAR, final_placing VARCHAR) |
SELECT census_ranking FROM table_name_36 WHERE population < 879 AND area_km_2 > 537.62 | Which Census Ranking has a Population smaller than 879, and an Area km 2 larger than 537.62? | CREATE TABLE table_name_36 (census_ranking VARCHAR, population VARCHAR, area_km_2 VARCHAR) |
SELECT venue FROM table_name_77 WHERE position_in_2005 = "8" | Can you tell me the Venue that has the Position in 2005 of 8? | CREATE TABLE table_name_77 (venue VARCHAR, position_in_2005 VARCHAR) |
SELECT party FROM table_1341522_41 WHERE incumbent = "Ron Klink" | What party does ron klink represent? | CREATE TABLE table_1341522_41 (party VARCHAR, incumbent VARCHAR) |
SELECT producer FROM table_name_71 WHERE production_cost = "$1,000,000" | What is the name of the producer that produced a film with a production cost of $1,000,000? | CREATE TABLE table_name_71 (producer VARCHAR, production_cost VARCHAR) |
SELECT SUM(attendance) FROM table_name_14 WHERE opponent = "green bay packers" | How many people attended the green bay packers game? | CREATE TABLE table_name_14 (attendance INTEGER, opponent VARCHAR) |
SELECT city_of_license__market FROM table_name_96 WHERE station = "kpix" | Which city contains the KPIX station? | CREATE TABLE table_name_96 (city_of_license__market VARCHAR, station VARCHAR) |
SELECT director FROM table_10874596_1 WHERE film_title_used_in_nomination = "Young Törless" | Who were the directors of the film submitted with the title Young Törless? | CREATE TABLE table_10874596_1 (director VARCHAR, film_title_used_in_nomination VARCHAR) |
SELECT date FROM table_13258851_2 WHERE opponent = "Kansas City Chiefs" | What was the date of the game against Kansas City Chiefs? | CREATE TABLE table_13258851_2 (date VARCHAR, opponent VARCHAR) |
SELECT pos FROM table_name_20 WHERE born = "1984" AND height = "1.80" | What is the position of the player born in 1984 with a height of 1.80m? | CREATE TABLE table_name_20 (pos VARCHAR, born VARCHAR, height VARCHAR) |
SELECT position FROM table_name_32 WHERE school = "texas a&m" | What position does the player from texas a&m play? | CREATE TABLE table_name_32 (position VARCHAR, school VARCHAR) |
SELECT round FROM table_name_43 WHERE player = "robert deciantis" | Which round was Robert Deciantis taken in? | CREATE TABLE table_name_43 (round VARCHAR, player VARCHAR) |
SELECT AVG(year) FROM table_name_75 WHERE venue = "bydgoszcz, poland" AND event = "junior team" | Which Year has a Venue of bydgoszcz, poland, and an Event of junior team? | CREATE TABLE table_name_75 (year INTEGER, venue VARCHAR, event VARCHAR) |
SELECT team FROM table_name_53 WHERE losses > 5 AND position = 12 | Which Team has Losses larger than 5, and a Position of 12? | CREATE TABLE table_name_53 (team VARCHAR, losses VARCHAR, position VARCHAR) |
SELECT COUNT(prodcode) FROM table_13403120_1 WHERE originalairdate = "01/12/1968" | what is the prod.code of the episode with original air date 01/12/1968? | CREATE TABLE table_13403120_1 (prodcode VARCHAR, originalairdate VARCHAR) |
SELECT T1.council_tax_id FROM Rent_Arrears AS T1 JOIN CMI_Cross_References AS T2 ON T1.cmi_cross_ref_id = T2.cmi_cross_ref_id JOIN Customer_Master_Index AS T3 ON T3.master_customer_id = T2.master_customer_id WHERE T3.cmi_details <> 'Schmidt , Kertzmann and Lubowitz' | What are the renting arrears tax ids related to the customer master index whose detail is not 'Schmidt, Kertzmann and Lubowitz'? | CREATE TABLE Rent_Arrears (council_tax_id VARCHAR, cmi_cross_ref_id VARCHAR); CREATE TABLE Customer_Master_Index (master_customer_id VARCHAR, cmi_details VARCHAR); CREATE TABLE CMI_Cross_References (cmi_cross_ref_id VARCHAR, master_customer_id VARCHAR) |
SELECT AVG(bronze) FROM table_name_41 WHERE rank = 14 AND total > 1 | Rank 14 with a total greater than 1 has what as the average bronze? | CREATE TABLE table_name_41 (bronze INTEGER, rank VARCHAR, total VARCHAR) |
SELECT MAX(position) FROM table_17366952_1 WHERE team = "Bangor City" | What is the highest position of the Bangor City team? | CREATE TABLE table_17366952_1 (position INTEGER, team VARCHAR) |
SELECT japanese_title FROM table_18539834_2 WHERE tv_station = "TV Asahi" | What are the japanese title(s) for tv asahi? | CREATE TABLE table_18539834_2 (japanese_title VARCHAR, tv_station VARCHAR) |
SELECT points_difference FROM table_name_30 WHERE lost < 6 AND points < 11 | What is the points difference for a loss less than 6, and points less than 11? | CREATE TABLE table_name_30 (points_difference VARCHAR, lost VARCHAR, points VARCHAR) |
SELECT team FROM table_17366952_1 WHERE goal_average_1 = "1.34" | Which team had goal averages of 1.34? | CREATE TABLE table_17366952_1 (team VARCHAR, goal_average_1 VARCHAR) |
SELECT official_website FROM table_name_18 WHERE dish = "•" AND callsign = "kvtv" | Name the official website which has dish of • and callsign of kvtv | CREATE TABLE table_name_18 (official_website VARCHAR, dish VARCHAR, callsign VARCHAR) |
SELECT entrant FROM table_name_87 WHERE points < 7 AND chassis = "lola t86/50" | with lola t86/50 chassis and less than 7 points what is the entrant? | CREATE TABLE table_name_87 (entrant VARCHAR, points VARCHAR, chassis VARCHAR) |
SELECT no_in_series FROM table_19897294_11 WHERE family_families = "The Amaral Family" | What episode in the series was the Amaral family featured? | CREATE TABLE table_19897294_11 (no_in_series VARCHAR, family_families VARCHAR) |
SELECT AVG(T1.stars), T2.title FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID WHERE T2.year = (SELECT MIN(YEAR) FROM Movie) | What is the average rating stars and title for the oldest movie? | CREATE TABLE Movie (title VARCHAR, mID VARCHAR, year VARCHAR); CREATE TABLE Rating (stars INTEGER, mID VARCHAR); CREATE TABLE Movie (YEAR INTEGER) |
SELECT player FROM table_name_84 WHERE round < 7 AND college = "arizona state" | Who is the player from Arizona state with a round less than 7? | CREATE TABLE table_name_84 (player VARCHAR, round VARCHAR, college VARCHAR) |
SELECT nominative FROM table_name_91 WHERE dative = "mis" | What nominative has mis as the dative? | CREATE TABLE table_name_91 (nominative VARCHAR, dative VARCHAR) |
SELECT venue FROM table_name_98 WHERE crowd > 30 OFFSET 000 | What venue featured a crowd of over 30,000? | CREATE TABLE table_name_98 (venue VARCHAR, crowd INTEGER) |
SELECT result FROM table_name_68 WHERE award = "best current affairs presenter" | What was the result for the award for best current affairs presenter? | CREATE TABLE table_name_68 (result VARCHAR, award VARCHAR) |
SELECT rank FROM table_name_51 WHERE qual = "135.328" | How did Johnnie Parsons finish when his qualifying time was 135.328? | CREATE TABLE table_name_51 (rank VARCHAR, qual VARCHAR) |
SELECT date FROM table_name_5 WHERE record = "54-55" | On which date were the 2003 Toronto Blue Jays 54-55? | CREATE TABLE table_name_5 (date VARCHAR, record VARCHAR) |
SELECT COUNT(regular_season_winner) FROM table_24160890_3 WHERE tournament_winner = "Cincinnati" | When Cincinnati is the tournament winner how many regular season winners are there? | CREATE TABLE table_24160890_3 (regular_season_winner VARCHAR, tournament_winner VARCHAR) |
SELECT nationality FROM table_name_25 WHERE player = "tom cassidy" | What is tom cassidy's nationality? | CREATE TABLE table_name_25 (nationality VARCHAR, player VARCHAR) |
SELECT track FROM table_name_69 WHERE race = "fountain of youth stakes" | What track did they race on at the Fountain of Youth Stakes? | CREATE TABLE table_name_69 (track VARCHAR, race VARCHAR) |
SELECT venue FROM table_name_63 WHERE third = "jack hargreaves" | What was the venue when Jack Hargreaves finished third? | CREATE TABLE table_name_63 (venue VARCHAR, third VARCHAR) |
SELECT role FROM table_name_61 WHERE theatre = "globe" AND music = "jerome kern" | Which Role has a Theatre of globe, and a Music of jerome kern? | CREATE TABLE table_name_61 (role VARCHAR, theatre VARCHAR, music VARCHAR) |
SELECT MIN(founded) FROM table_262534_2 WHERE institution = "St. Catharine College" | What year was the institution of St. Catharine College founded? | CREATE TABLE table_262534_2 (founded INTEGER, institution VARCHAR) |
SELECT MAX(rank) FROM table_25220821_3 WHERE tues_1_june = "20' 59.60 107.834mph" | If Tuesday 1 June is 20' 59.60 107.834mph, what is the rank maximum? | CREATE TABLE table_25220821_3 (rank INTEGER, tues_1_june VARCHAR) |
SELECT score FROM table_name_23 WHERE opponent = "vancouver canucks" | What is the score for the opponent Vancouver Canucks? | CREATE TABLE table_name_23 (score VARCHAR, opponent VARCHAR) |
SELECT poll_source FROM table_name_67 WHERE john_oxendine = "32%" | In what poll is John Oxendine at 32%? | CREATE TABLE table_name_67 (poll_source VARCHAR, john_oxendine VARCHAR) |
SELECT metal FROM table_name_83 WHERE denomination = "one rupee" | What metal has one rupee as the denomination? | CREATE TABLE table_name_83 (metal VARCHAR, denomination VARCHAR) |
SELECT mult FROM table_18823880_10 WHERE sspec_number = "SLBLW(B1)" | When slblw(b1) is the sspec number what is the mult.? | CREATE TABLE table_18823880_10 (mult VARCHAR, sspec_number VARCHAR) |
SELECT AVG(wins) FROM table_name_86 WHERE points = "42-2" AND goals_against = 67 AND played < 44 | What are the average wins with a Points of 42-2, and Goals against of 67, and Played smaller than 44? | CREATE TABLE table_name_86 (wins INTEGER, played VARCHAR, points VARCHAR, goals_against VARCHAR) |
SELECT sixth_place FROM table_name_34 WHERE series = 7 | Who was in sixth place in series 7? | CREATE TABLE table_name_34 (sixth_place VARCHAR, series VARCHAR) |
SELECT record FROM table_name_61 WHERE date = "january 17" | What was the record on January 17? | CREATE TABLE table_name_61 (record VARCHAR, date VARCHAR) |
SELECT MIN(capacity_in_persons_hour) FROM table_17814458_1 WHERE construction_year_s_ = "1983" | Name the least capacity for persons hour for 1983 | CREATE TABLE table_17814458_1 (capacity_in_persons_hour INTEGER, construction_year_s_ VARCHAR) |
SELECT partner FROM table_1920271_3 WHERE outcome = "Runner-up" AND championship = "US Open" | Who was her partner at the US Open and they were runner-up? | CREATE TABLE table_1920271_3 (partner VARCHAR, outcome VARCHAR, championship VARCHAR) |
SELECT load_bearing_capacity FROM table_1427868_1 WHERE scientific_name = "Camelus dromedarius" | What is the load bearing capacity when the name is Camelus Dromedarius | CREATE TABLE table_1427868_1 (load_bearing_capacity VARCHAR, scientific_name VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.