sql stringlengths 9 2.37k | table stringclasses 9
values | query stringlengths 51 503 |
|---|---|---|
SELECT "Written by" FROM table_73966 WHERE "Production code" = '2T5954' | CREATE TABLE INST, Here is a database schema( table schema); | Who was the writter for the episode identified by the production code 2t5954?It is not neccessary to use all the tables. |
SELECT Team 1 FROM table WHERE Team 2 = universidad nacional | CREATE TABLE INST, Here is a database schema( table schema); | What team 1 has a team 2 of universidad nacional?.It is not neccessary to use all the tables. |
SELECT attendance FROM table_name_24 WHERE loss = "drese (0-2)" | CREATE TABLE INST, Here is a database schema( table schema); | which attendance has a Loss of drese (0-2)?It is not neccessary to use all the tables. |
SELECT party FROM table_2668378_18 WHERE incumbent = "John G. Jackson" | CREATE TABLE INST, Here is a database schema( table schema); | What party represents the district with john g. jackson?It is not neccessary to use all the tables. |
SELECT hometown FROM table_14624447_39 WHERE name = "Ventrell Jenkins" | CREATE TABLE INST, Here is a database schema( table schema); | Name the hometown for ventrell jenkinsIt is not neccessary to use all the tables. |
SELECT High assists FROM table WHERE Date = January 29 | CREATE TABLE INST, Here is a database schema( table schema); | what re the high assists for january 29?.It is not neccessary to use all the tables. |
SELECT U.S. Hot 100 FROM table WHERE Year = 2002 AND Album = west coast bad boyz, vol. 3: poppin' collars | CREATE TABLE INST, Here is a database schema( table schema); | What is the U.S. Hot 100 chart number of the single off of the 2002 album west coast bad boyz, vol. 3: poppin' collars?.It is not neccessary to use all the tables. |
SELECT Location FROM table WHERE Theatre name = Méga-Plex Taschereau IMAX | CREATE TABLE INST, Here is a database schema( table schema); | Name the location for democratic méga-plex taschereau imax.It is not neccessary to use all the tables. |
SELECT COUNT(series__number) FROM table_25649467_2 WHERE season__number = 12 | CREATE TABLE INST, Here is a database schema( table schema); | When 12 is the season number how many series numbers are there?It is not neccessary to use all the tables. |
SELECT attendance FROM table_name_27 WHERE result = "w 16-10* o.t." | CREATE TABLE INST, Here is a database schema( table schema); | Result of w 16-10* o.t. had what attendance?It is not neccessary to use all the tables. |
SELECT Date FROM table WHERE Stadium = Tallaght Stadium AND Result = 0–1 | CREATE TABLE INST, Here is a database schema( table schema); | What is the date for the game at the tallaght stadium and result was 0–1?.It is not neccessary to use all the tables. |
SELECT Record FROM table WHERE Attendance = 19,887 | CREATE TABLE INST, Here is a database schema( table schema); | What was the score when attendance was 19,887?.It is not neccessary to use all the tables. |
SELECT To par FROM table WHERE Year(s) won = 2003 | CREATE TABLE INST, Here is a database schema( table schema); | What is the to par number of the person who won in 2003?.It is not neccessary to use all the tables. |
SELECT venue FROM table_name_35 WHERE goals = "h.paul 8/9" | CREATE TABLE INST, Here is a database schema( table schema); | Which venue has h.paul 8/9 goals?It is not neccessary to use all the tables. |
SELECT Mixed doubles FROM table WHERE Men's singles = andrew downes | CREATE TABLE INST, Here is a database schema( table schema); | Who won the mixed doubles the same year that Andrew Downes won the men's singles?.It is not neccessary to use all the tables. |
SELECT Away team score FROM table WHERE Venue = junction oval | CREATE TABLE INST, Here is a database schema( table schema); | When the VFL played at Junction Oval what was the away score?.It is not neccessary to use all the tables. |
SELECT Score FROM table WHERE Visitor = st. louis | CREATE TABLE INST, Here is a database schema( table schema); | What was the score when St. Louis was the visiting team?.It is not neccessary to use all the tables. |
SELECT tournament FROM table_name_30 WHERE 2009 = "11" | CREATE TABLE INST, Here is a database schema( table schema); | Which tournament was on 2009 with 11?It is not neccessary to use all the tables. |
SELECT Country FROM table WHERE Year(s) won = 1986 | CREATE TABLE INST, Here is a database schema( table schema); | Which country won in 1986?.It is not neccessary to use all the tables. |
SELECT "Round" FROM table_49968 WHERE "Method" = 'tko (cut)' | CREATE TABLE INST, Here is a database schema( table schema); | What round did the match go to when tko (cut) was the method?It is not neccessary to use all the tables. |
SELECT City of license FROM table WHERE Call sign = w242at | CREATE TABLE INST, Here is a database schema( table schema); | For the call sign w242at what's the city the license plate is registered to?.It is not neccessary to use all the tables. |
SELECT COUNT("Country") FROM table_31132 WHERE "Remittances 2008" = '9.07' | CREATE TABLE INST, Here is a database schema( table schema); | how many countries have remittances in 2008 of 9.07?It is not neccessary to use all the tables. |
SELECT Points FROM table WHERE Driver = Mark Martin | CREATE TABLE INST, Here is a database schema( table schema); | what's the points with driver mark martin.It is not neccessary to use all the tables. |
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.language = "RUSS" AND diagnoses.short_title = "Proteus infection NOS" | CREATE TABLE INST, Here is a database schema( table schema); | find the number of russian speaking patients who are diagnosed with proteus infection nos.It is not neccessary to use all the tables. |
SELECT Match type FROM table WHERE Location = budapest AND Opponenent = luxembourg | CREATE TABLE INST, Here is a database schema( table schema); | What was the match type in Budapest where the opponent was Luxembourg?.It is not neccessary to use all the tables. |
SELECT Fri 3 June FROM table WHERE Wed 1 June = 18' 22.66 123.182mph | CREATE TABLE INST, Here is a database schema( table schema); | What is the Fri 3 June time for the rider with a Weds 1 June time of 18' 22.66 123.182mph?.It is not neccessary to use all the tables. |
SELECT T1.name, T1.city, T2.dst_apid FROM airports AS T1 JOIN routes AS T2 ON T1.apid = T2.dst_apid GROUP BY T2.dst_apid ORDER BY COUNT(*) DESC LIMIT 1 | CREATE TABLE INST, Here is a database schema( table schema); | Find the name and city of the airport which is the destination of the most number of routes.It is not neccessary to use all the tables. |
SELECT COUNT Time FROM table WHERE React = 0.155 AND Athlete = kristof beyens AND Rank < 3 | CREATE TABLE INST, Here is a database schema( table schema); | How much Time has a Reaction of 0.155, and an Athlete of kristof beyens, and a Rank smaller than 3?.It is not neccessary to use all the tables. |
SELECT Written by FROM table WHERE Prod. code = 5 | CREATE TABLE INST, Here is a database schema( table schema); | Who wrote the episode with production code 5?.It is not neccessary to use all the tables. |
SELECT COUNT Group B Winner FROM table WHERE Group C Winner = Francavilla | CREATE TABLE INST, Here is a database schema( table schema); | What is the number of group b winner for francavilla?.It is not neccessary to use all the tables. |
SELECT AVG(cuts_made) FROM table_name_65 WHERE top_25 < 10 AND top_10 > 3 | CREATE TABLE INST, Here is a database schema( table schema); | What is the average cuts made at the top 25 less than 10 and at the Top 10 more than 3?It is not neccessary to use all the tables. |
SELECT COUNT(*), country_code FROM players GROUP BY country_code | CREATE TABLE INST, Here is a database schema( table schema); | find the number of players for each country.It is not neccessary to use all the tables. |
SELECT VP9 ( WebM ) FROM table WHERE H.264 = 9.0 | CREATE TABLE INST, Here is a database schema( table schema); | When h.264 is 9.0, how much is vp9 ( webm ).It is not neccessary to use all the tables. |
SELECT COUNT(goals_conceded) FROM table_name_13 WHERE played > 18 | CREATE TABLE INST, Here is a database schema( table schema); | What are the number of goals conceded that has a played greater than 18?It is not neccessary to use all the tables. |
SELECT high_assists FROM table_name_95 WHERE high_points = "mcwilliams-franklin (22)" | CREATE TABLE INST, Here is a database schema( table schema); | What high assists have McWilliams-franklin (22) as the high points?It is not neccessary to use all the tables. |
SELECT award_category FROM table_name_92 WHERE nominated_won = "won" AND year = 2007 | CREATE TABLE INST, Here is a database schema( table schema); | In what category was an award won in 2007?It is not neccessary to use all the tables. |
SELECT MAX(area_km_2) FROM table_name_46 WHERE official_name = "stanley" AND population > 1 OFFSET 817 | CREATE TABLE INST, Here is a database schema( table schema); | Which Area km 2 has an Official Name of stanley and a Population larger than 1817?It is not neccessary to use all the tables. |
SELECT home_team AS score FROM table_name_2 WHERE away_team = "st kilda" | CREATE TABLE INST, Here is a database schema( table schema); | Which Home team score has an Away team of st kilda?It is not neccessary to use all the tables. |
SELECT player FROM table_name_67 WHERE no_s_ = "20" | CREATE TABLE INST, Here is a database schema( table schema); | What player had numbers of 20It is not neccessary to use all the tables. |
SELECT Time/Retired FROM table WHERE Laps < 49 AND Name = michael caruso | CREATE TABLE INST, Here is a database schema( table schema); | What is Time/Retired, when Laps is less than 49, and when Name is "Michael Caruso"?.It is not neccessary to use all the tables. |
SELECT tuesday FROM table_18173916_6 WHERE thursday = "196 Buried" | CREATE TABLE INST, Here is a database schema( table schema); | What was the Tuesday episode if theThursday episode was 196 Buried?It is not neccessary to use all the tables. |
SELECT tournament FROM table_name_2 WHERE 2001 = "2–4" | CREATE TABLE INST, Here is a database schema( table schema); | 2001 of 2–4 was in which tournament?It is not neccessary to use all the tables. |
SELECT to_par FROM table_name_52 WHERE player = "dave hill" | CREATE TABLE INST, Here is a database schema( table schema); | what is the to par for Dave hill?It is not neccessary to use all the tables. |
SELECT Vmax FROM table WHERE Type = p4-1 (24/36 ps) | CREATE TABLE INST, Here is a database schema( table schema); | What was the maximum speed for the P4-1 (24/36 ps)?.It is not neccessary to use all the tables. |
SELECT MAX(wins) FROM table_24330803_1 WHERE series = "Formula 3 Euro series" | CREATE TABLE INST, Here is a database schema( table schema); | What is the maximum number of wins in the formula 3 euro series?It is not neccessary to use all the tables. |
SELECT fp.OwnerUserId AS "user_link", p1.Id AS "post_link", SUM(CASE WHEN v.VoteTypeId = 2 THEN 1 WHEN v.VoteTypeId = 3 THEN -1 ELSE 0 END) AS ScoreThen FROM (SELECT p.OwnerUserId, MIN(p.CreationDate) AS dateFirstPost FROM Posts AS p WHERE p.PostTypeId = '##Choose1forQ2forA##' GROUP BY p.OwnerUserId) AS fp INNER JOIN Posts AS p1 ON p1.CreationDate = fp.dateFirstPost AND p1.OwnerUserId = fp.OwnerUserId INNER JOIN Votes AS v ON v.PostId = p1.Id AND DATEDIFF(d, p1.CreationDate, creationdate) <= '##N##' AND (v.VoteTypeId = 2 OR v.VoteTypeId = 3) GROUP BY fp.OwnerUserId, p1.Id ORDER BY SUM(CASE WHEN v.VoteTypeId = 2 THEN 1 WHEN v.VoteTypeId = 3 THEN -1 ELSE 0 END) DESC | CREATE TABLE INST, Here is a database schema( table schema); | Score of first question/answer after N days by user.It is not neccessary to use all the tables. |
SELECT t3.title FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid JOIN inst AS t4 ON t2.instid = t4.instid WHERE t4.country = "Japan" AND t2.authorder = 1 AND t1.lname = "Ohori" | CREATE TABLE INST, Here is a database schema( table schema); | Find the titles of papers whose first author is affiliated with an institution in the country 'Japan' and has last name 'Ohori'?It is not neccessary to use all the tables. |
SELECT type FROM table_name_60 WHERE ends = "2009" | CREATE TABLE INST, Here is a database schema( table schema); | What's the type that ends in 2009?It is not neccessary to use all the tables. |
SELECT tv_time FROM table_name_72 WHERE result = "w 24–10" | CREATE TABLE INST, Here is a database schema( table schema); | What kind of TV Time that has a Result of w 24–10?It is not neccessary to use all the tables. |
SELECT coding FROM table_14332822_1 WHERE genbank_id = "HQ021442" | CREATE TABLE INST, Here is a database schema( table schema); | What is the coding for hq021442 genbankid?It is not neccessary to use all the tables. |
SELECT aa_length FROM table_26708105_5 WHERE protein_name = "C11orf73" | CREATE TABLE INST, Here is a database schema( table schema); | What is the aa length when the protein name is c11orf73?It is not neccessary to use all the tables. |
SELECT outgoing_manager FROM table_22297140_3 WHERE replaced_by = "Jafar Fatahi" | CREATE TABLE INST, Here is a database schema( table schema); | Which outgoing manager was replaced by Jafar Fatahi?It is not neccessary to use all the tables. |
SELECT athletes FROM table_name_97 WHERE country = "myanmar" | CREATE TABLE INST, Here is a database schema( table schema); | What is the name of the athlete from Myanmar?It is not neccessary to use all the tables. |
SELECT location FROM table_name_72 WHERE event = "100m butterfly" | CREATE TABLE INST, Here is a database schema( table schema); | What is the Location when Event is "100m Butterfly"?It is not neccessary to use all the tables. |
SELECT scoring_average FROM table_22081847_1 WHERE year = 2010 | CREATE TABLE INST, Here is a database schema( table schema); | If the year is 2010 what was the average score?It is not neccessary to use all the tables. |
SELECT COUNT(prom__m_) FROM table_name_59 WHERE height__m_ < 615 | CREATE TABLE INST, Here is a database schema( table schema); | Tell me the total number of prom for height less than 615It is not neccessary to use all the tables. |
SELECT nvr_page FROM table_name_6 WHERE home_port = "sasebo, japan" | CREATE TABLE INST, Here is a database schema( table schema); | What is the NVR Page of the ship with a Home Port of Sasebo Japan?It is not neccessary to use all the tables. |
SELECT Date FROM table WHERE Game = 8 | CREATE TABLE INST, Here is a database schema( table schema); | What is Date, when Game is "8"?.It is not neccessary to use all the tables. |
SELECT AVG("total apps") FROM table_204_159 WHERE "nation" = 'scotland' | CREATE TABLE INST, Here is a database schema( table schema); | what is the average number of scotland 's total apps ?It is not neccessary to use all the tables. |
SELECT COUNT(laps) FROM table_name_96 WHERE time_retired = "+ 1 lap" AND driver = "riccardo patrese" | CREATE TABLE INST, Here is a database schema( table schema); | How many laps did riccardo patrese do when he had a time/retird of + 1 lap?It is not neccessary to use all the tables. |
SELECT MIN Draw FROM table WHERE Artist = stine findsen AND Points > 42 | CREATE TABLE INST, Here is a database schema( table schema); | What is the lowest Draw when the Artist is Stine Findsen and the Points are larger than 42?.It is not neccessary to use all the tables. |
SELECT Away FROM table WHERE Home = victoria | CREATE TABLE INST, Here is a database schema( table schema); | What is the away team whose home is Victoria?.It is not neccessary to use all the tables. |
SELECT Screen size,pixels FROM table WHERE Dimensions W×H×D (mm) = 98×64.5×41 AND Model = p5000 | CREATE TABLE INST, Here is a database schema( table schema); | What is the screen size and pixel amount of model p5000 when the dimensions are 98×64.5×41?.It is not neccessary to use all the tables. |
SELECT Rank FROM table WHERE Wins > 11 AND Player = miller barber | CREATE TABLE INST, Here is a database schema( table schema); | What rank is Miller Barber with more than 11 wins?.It is not neccessary to use all the tables. |
SELECT street_address FROM table_name_9 WHERE name = "van antwerp building" | CREATE TABLE INST, Here is a database schema( table schema); | What is the street address of the van antwerp building?It is not neccessary to use all the tables. |
SELECT Date FROM table WHERE Record = 8–10–6 | CREATE TABLE INST, Here is a database schema( table schema); | What is the Date of the game with a Record of 8–10–6?.It is not neccessary to use all the tables. |
SELECT Market Rank & City of license /Market FROM table WHERE Station = KABC-TV | CREATE TABLE INST, Here is a database schema( table schema); | What market rank and city had the station KABC-TV?.It is not neccessary to use all the tables. |
SELECT City FROM table WHERE ICAO = zsxz | CREATE TABLE INST, Here is a database schema( table schema); | Which city has an ICAO of ZSXZ?.It is not neccessary to use all the tables. |
SELECT MAX Season FROM table WHERE Score = 39-27 | CREATE TABLE INST, Here is a database schema( table schema); | Which Season has a Score of 39-27?.It is not neccessary to use all the tables. |
SELECT COUNT NetFlow Version FROM table WHERE Vendor and type = Enterasys Switches | CREATE TABLE INST, Here is a database schema( table schema); | How many netflow version are there when the vendor and type is enterasys switches?.It is not neccessary to use all the tables. |
SELECT MAX(crowd) FROM table_name_33 WHERE away_team = "geelong" | CREATE TABLE INST, Here is a database schema( table schema); | What is the highest crowd population when the away team is Geelong?It is not neccessary to use all the tables. |
SELECT "chumps" FROM table_204_269 WHERE "room" = 'kitchen' | CREATE TABLE INST, Here is a database schema( table schema); | who were the chumps in the kitchen ?It is not neccessary to use all the tables. |
SELECT T2.state FROM FINREV_FED_KEY_17 as T2 JOIN FINREV_FED_17 as T1 ON T1.state_code = T2.state_code GROUP BY T2.state ORDER BY sum(t_fed_rev) DESC LIMIT 1 | CREATE TABLE INST, Here is a database schema( finrev fed 17); | Which state get the highest revenue?. It is not neccessary to use all the tables. |
SELECT player FROM table_1473672_8 WHERE nhl_team = "Chicago Black Hawks" | CREATE TABLE INST, Here is a database schema( table schema); | Name the player for chicago black hawksIt is not neccessary to use all the tables. |
SELECT MAX Laps FROM table WHERE Time/Retired = +3.370 secs | CREATE TABLE INST, Here is a database schema( table schema); | Which Laps is the highest one that has a Time/Retired of +3.370 secs?.It is not neccessary to use all the tables. |
SELECT Skip FROM table WHERE Country = finland | CREATE TABLE INST, Here is a database schema( table schema); | What is the skip when the country is finland?.It is not neccessary to use all the tables. |
SELECT driver___passenger FROM table_16941304_4 WHERE points = 394 | CREATE TABLE INST, Here is a database schema( table schema); | Name the driver passenger for 394 pointsIt is not neccessary to use all the tables. |
SELECT last_appearance FROM table_25831483_1 WHERE actor_actress = "Pam Ferris" | CREATE TABLE INST, Here is a database schema( table schema); | What was the last appearance of actor/actress is pam ferris?It is not neccessary to use all the tables. |
SELECT COUNT(winner) FROM table_25580292_13 WHERE stage = 5 | CREATE TABLE INST, Here is a database schema( table schema); | How many winners were there for stage 5?It is not neccessary to use all the tables. |
SELECT AVG Population 2006 census FROM table WHERE Local government area = alexandrina council AND Rank < 19 | CREATE TABLE INST, Here is a database schema( table schema); | What was the 2006 population for the local government area of alexandrina council whose rank was smaller than 19?.It is not neccessary to use all the tables. |
SELECT Original air date FROM table WHERE U.S. viewers (millions) = 10.50 | CREATE TABLE INST, Here is a database schema( table schema); | When did the episode viewed by 10.50 millions of people in the US run for the first time?.It is not neccessary to use all the tables. |
SELECT city___state FROM table_name_87 WHERE winner = "russell ingall larry perkins" | CREATE TABLE INST, Here is a database schema( table schema); | What is the city/state of the circuit where Russell Ingall Larry Perkins was the winner?It is not neccessary to use all the tables. |
SELECT record FROM table_name_8 WHERE date = "october 30" | CREATE TABLE INST, Here is a database schema( table schema); | What was the Record for the game on October 30?It is not neccessary to use all the tables. |
SELECT Song Choice FROM table WHERE Original Artist = Marisa Monte | CREATE TABLE INST, Here is a database schema( table schema); | Which song was picked that was originally performed by Marisa Monte?.It is not neccessary to use all the tables. |
SELECT COUNT Vacator FROM table WHERE District = Pennsylvania 33rd | CREATE TABLE INST, Here is a database schema( table schema); | How many vacators were in the Pennsylvania 33rd district?.It is not neccessary to use all the tables. |
SELECT COUNT(*) > 0 FROM patient WHERE patient.uniquepid = '016-18150' AND STRFTIME('%y', patient.hospitaladmittime) = '2105' | CREATE TABLE INST, Here is a database schema( table schema); | in 2105 did patient 016-18150 visit the hospital?It is not neccessary to use all the tables. |
SELECT prescriptions.drug_type FROM prescriptions WHERE prescriptions.formulary_drug_cd = "SW100MLG" | CREATE TABLE INST, Here is a database schema( table schema); | what is drug type of drug code sw100mlg?It is not neccessary to use all the tables. |
SELECT "Prize fund ( \uffe5 )" FROM table_28342 WHERE "Location" = 'Ibaraki' | CREATE TABLE INST, Here is a database schema( table schema); | What is the prize for the tournament at Ibaraki?It is not neccessary to use all the tables. |
SELECT Term start FROM table WHERE Name = ismail qemali bej | CREATE TABLE INST, Here is a database schema( table schema); | When did Ismail Qemali Bej's term start?.It is not neccessary to use all the tables. |
SELECT Stadium FROM table WHERE Visiting Team = new york jets | CREATE TABLE INST, Here is a database schema( table schema); | Where were the New York Jets visiting?.It is not neccessary to use all the tables. |
SELECT name FROM table_name_1 WHERE avg_g = 13.7 | CREATE TABLE INST, Here is a database schema( table schema); | what is the name when avg/g is 13.7?It is not neccessary to use all the tables. |
SELECT "Time slot (EST)" FROM table_16559 WHERE "Rating" = '6.3' | CREATE TABLE INST, Here is a database schema( table schema); | What time slots have a 6.3 ratingIt is not neccessary to use all the tables. |
SELECT AVG(military_deaths) FROM table_name_22 WHERE civilian_deaths__including_foreigners_ < 38 AND military_and_or_civilian_wounded = "33" | CREATE TABLE INST, Here is a database schema( table schema); | What is the average number of military deaths when there are fewer than 38 civilian deaths (including foreigners) and 33 military and/or civilian wounded?It is not neccessary to use all the tables. |
SELECT outcome FROM table_2139023_2 WHERE surface = "Grass" AND year = 1955 | CREATE TABLE INST, Here is a database schema( table schema); | What was the result of the match on grass in 1955?It is not neccessary to use all the tables. |
SELECT AVG Overall FROM table WHERE Name = brad scioli AND Pick # > 5 | CREATE TABLE INST, Here is a database schema( table schema); | What's the Overall average that has brad scioli, and a Pick # larger than 5?.It is not neccessary to use all the tables. |
SELECT Area km² (1998) FROM table WHERE No. of communes = 51 | CREATE TABLE INST, Here is a database schema( table schema); | What's the area of the voivodenship with 51 communes?.It is not neccessary to use all the tables. |
SELECT Filename extension FROM table WHERE Interactivity support = no AND Open standard = yes AND Image support = no | CREATE TABLE INST, Here is a database schema( table schema); | Which Filename extension has an Interactivity support of no, an Open standard of yes, and an Image support of no?.It is not neccessary to use all the tables. |
SELECT procedures_icd.charttime FROM procedures_icd WHERE procedures_icd.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 2498) AND DATETIME(procedures_icd.charttime) <= DATETIME(CURRENT_TIME(), '-1 year') ORDER BY procedures_icd.charttime DESC LIMIT 1 | CREATE TABLE INST, Here is a database schema( table schema); | what's the last time patient 2498 has had a procedure until 1 year ago?It is not neccessary to use all the tables. |
SELECT current_rank FROM table_name_4 WHERE ring_name = "tamaasuka daisuke" | CREATE TABLE INST, Here is a database schema( table schema); | What is Current Rank when Ring Name is Tamaasuka Daisuke?It is not neccessary to use all the tables. |
SELECT location FROM table_2439728_1 WHERE mascot = "Dragons" | CREATE TABLE INST, Here is a database schema( table schema); | where are dragons used as mascots?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.