sql stringlengths 9 2.37k | table stringclasses 9
values | query stringlengths 51 503 |
|---|---|---|
SELECT Record FROM table WHERE High assists = Pierce (6) | CREATE TABLE INST, Here is a database schema( table schema); | What is the record where high assists is pierce (6)?.It is not neccessary to use all the tables. |
SELECT team_1 FROM table_name_36 WHERE team_2 = "iskra odintsovo" | CREATE TABLE INST, Here is a database schema( table schema); | What is Team 1 when Team 2 is "Iskra Odintsovo"?It is not neccessary to use all the tables. |
SELECT run_time FROM table_2108684_1 WHERE viewers__in_millions_ = "7.9" | CREATE TABLE INST, Here is a database schema( table schema); | What is the run time for the episode with 7.9 million viewers?It is not neccessary to use all the tables. |
SELECT To par FROM table WHERE Winning score = 71-69-71-70=281 | CREATE TABLE INST, Here is a database schema( table schema); | What is the to par value for the game with a winning score of 71-69-71-70=281?.It is not neccessary to use all the tables. |
SELECT Time FROM table WHERE Ground = humber college north AND Home = toronto downtown dingos | CREATE TABLE INST, Here is a database schema( table schema); | What time has humber college north as the ground, and toronto downtown dingos as the home?.It is not neccessary to use all the tables. |
SELECT height_feet___m FROM table_name_40 WHERE street_address = "2345 grand avenue" | CREATE TABLE INST, Here is a database schema( table schema); | What is listsed as the Height feet/m and has a Street address of 2345 Grand Avenue?It is not neccessary to use all the tables. |
SELECT SUM(order) FROM table_name_89 WHERE built = "5/69-6/69" | CREATE TABLE INST, Here is a database schema( table schema); | with build 5/69-6/69 what's the order?It is not neccessary to use all the tables. |
SELECT SUM(population_112008) FROM table_name_62 WHERE urban_area = "tønsberg" AND population_112006 > 45.447 | CREATE TABLE INST, Here is a database schema( table schema); | Name the sum of population 1.1.2008 for tønsberg and population 1.1.2006 more than 45.447It is not neccessary to use all the tables. |
SELECT club FROM table_name_95 WHERE league_division = "fourth division" | CREATE TABLE INST, Here is a database schema( table schema); | What club has a league/division of fourth division?It is not neccessary to use all the tables. |
SELECT melbourne FROM table_name_52 WHERE adelaide = "yes" AND sydney = "yes" AND perth = "yes" AND gold_coast = "no" | CREATE TABLE INST, Here is a database schema( table schema); | What is the result for Melbourne when Adelaide Sydney and Perth are yes and Gold Coast is no?It is not neccessary to use all the tables. |
SELECT rider FROM table_name_43 WHERE time_retired = "accident" | CREATE TABLE INST, Here is a database schema( table schema); | Who is the rider whose time/retired is accident?It is not neccessary to use all the tables. |
SELECT record FROM table_29556461_8 WHERE team = "Dayton" | CREATE TABLE INST, Here is a database schema( table schema); | When dayton is the team what is the record?It is not neccessary to use all the tables. |
SELECT launched FROM table_name_36 WHERE builder = "fujinagata shipyards, japan" AND laid_down = "20 october 1924" | CREATE TABLE INST, Here is a database schema( table schema); | when was the ship launched when it was laid down 20 october 1924 and built by fujinagata shipyards japan?It is not neccessary to use all the tables. |
SELECT MIN League Cup FROM table WHERE Championship = 4 | CREATE TABLE INST, Here is a database schema( table schema); | What is the lowest number of league cups with 4 championships?.It is not neccessary to use all the tables. |
SELECT t3.drugname FROM (SELECT t2.drugname, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT patient.uniquepid, diagnosis.diagnosistime, patient.patienthealthsystemstayid FROM diagnosis JOIN patient ON diagnosis.patientunitstayid = patient.patientunitstayid WHERE diagnosis.diagnosisname = 'septic shock' A... | CREATE TABLE INST, Here is a database schema( table schema); | since 4 years ago, what are the three most frequent drugs prescribed to the patients 40s during the same hospital visit after they were diagnosed with septic shock?It is not neccessary to use all the tables. |
SELECT Place FROM table WHERE To par = e AND Score = 69-69-72=210 | CREATE TABLE INST, Here is a database schema( table schema); | What is the place with a to par of E and a score of 69-69-72=210?.It is not neccessary to use all the tables. |
SELECT Location FROM table WHERE Score = 119-115 (ot) | CREATE TABLE INST, Here is a database schema( table schema); | Score of 119-115 (ot) involved what location?.It is not neccessary to use all the tables. |
SELECT GA FROM table WHERE Coach(es) = Bob Ferguson AND T = 6 | CREATE TABLE INST, Here is a database schema( table schema); | What is every GA if coach is Bob Ferguson and T is 6?.It is not neccessary to use all the tables. |
SELECT Ticket sold / available FROM table WHERE Venue = Carver-Hawkeye Arena | CREATE TABLE INST, Here is a database schema( table schema); | How many tickets are sold for the Carver-Hawkeye Arena? .It is not neccessary to use all the tables. |
SELECT goals FROM table_name_92 WHERE assists = "5" | CREATE TABLE INST, Here is a database schema( table schema); | What are the goals of the assists of 5?It is not neccessary to use all the tables. |
SELECT date FROM table_name_43 WHERE record = "19–16–8" | CREATE TABLE INST, Here is a database schema( table schema); | Which Date has a Record of 19–16–8?It is not neccessary to use all the tables. |
SELECT cast FROM table_2570269_2 WHERE episode_title = "Pressures" | CREATE TABLE INST, Here is a database schema( table schema); | If the episode title is Pressures what are the names of the cast?It is not neccessary to use all the tables. |
SELECT "film" FROM table_201_34 WHERE "year" > (SELECT "year" FROM table_201_34 WHERE "film" = 'cha-cha') ORDER BY "year" LIMIT 1 | CREATE TABLE INST, Here is a database schema( table schema); | what did nina hagan perform in after cha cha ?It is not neccessary to use all the tables. |
SELECT MAX(position) FROM table_name_73 WHERE played < 10 | CREATE TABLE INST, Here is a database schema( table schema); | What is the highest position of the team having played under 10 matches?It is not neccessary to use all the tables. |
SELECT SUM("Game") FROM table_9290 WHERE "Location" = 'staples center' | CREATE TABLE INST, Here is a database schema( table schema); | What was the total games played at the Staples Center?It is not neccessary to use all the tables. |
SELECT DISTINCT DERIVED_TABLEalias0.DERIVED_FIELDalias1 FROM (SELECT AREAalias0.area, COUNT(*) INNER JOIN student_record ON student_record.course_id = AREAalias0.course_id WHERE student_record.grade LIKE 'B+' AND student_record.student_id = 1 GROUP BY AREAalias0.area) AS DERIVED_TABLEalias0 WHERE DERIVED_TABLEalias0.DE... | CREATE TABLE INST, Here is a database schema( table schema); | In which area have I earned the most B+ 's ?It is not neccessary to use all the tables. |
SELECT MAX(lane) FROM table_name_60 WHERE nationality = "russia" AND rank < 1 | CREATE TABLE INST, Here is a database schema( table schema); | What's Russia's lane when they were ranked before 1?It is not neccessary to use all the tables. |
SELECT Score FROM table WHERE Date = september 11 | CREATE TABLE INST, Here is a database schema( table schema); | Name the score for september 11.It is not neccessary to use all the tables. |
SELECT International tourism expenditure (2011) FROM table WHERE Country = china | CREATE TABLE INST, Here is a database schema( table schema); | What is China's International tourism expenditure (2011)?.It is not neccessary to use all the tables. |
SELECT mls_team FROM table_25518547_2 WHERE player = "Seth Sinovic" | CREATE TABLE INST, Here is a database schema( table schema); | What team does Seth Sinovic play for?It is not neccessary to use all the tables. |
SELECT SUM Appeared FROM table WHERE RR W Rate < 0.33 AND Player = angelique kerber | CREATE TABLE INST, Here is a database schema( table schema); | For Angelique Kerber who had an RR Rate of less than 0.33, what's the appeared?.It is not neccessary to use all the tables. |
SELECT "City of license" FROM table_58001 WHERE "Call sign" = 'w244bk' | CREATE TABLE INST, Here is a database schema( table schema); | What city of license is associated with call sign w244bk?It is not neccessary to use all the tables. |
SELECT COUNT(distance) FROM table_1284347_2 WHERE race = "Rosehill Guineas" | CREATE TABLE INST, Here is a database schema( table schema); | How many races is different distances does Rosehill Guineas compete in?It is not neccessary to use all the tables. |
SELECT Film FROM table WHERE Status = nominated AND Name = ken watanabe | CREATE TABLE INST, Here is a database schema( table schema); | What Ken Watanabe film as nominated?.It is not neccessary to use all the tables. |
SELECT position FROM table_2886617_8 WHERE nhl_team = "Toronto Maple Leafs" | CREATE TABLE INST, Here is a database schema( table schema); | What position did the draft pick for Toronto Maple Leafs play?It is not neccessary to use all the tables. |
SELECT to_par FROM table_name_23 WHERE place = "t1" AND score = 66 - 71 - 66 = 203 | CREATE TABLE INST, Here is a database schema( table schema); | What is the Top that has a 66-71-66=203 score and a place of t1?It is not neccessary to use all the tables. |
SELECT COUNT Round FROM table WHERE Record = 4-0 | CREATE TABLE INST, Here is a database schema( table schema); | How many rounds was the fight when the record was 4-0?.It is not neccessary to use all the tables. |
SELECT runners_up FROM table_2869837_1 WHERE school = "Royal school Dungannon" | CREATE TABLE INST, Here is a database schema( table schema); | What are the number of runners up for Royal School Dungannon?It is not neccessary to use all the tables. |
SELECT Team FROM table WHERE Score = W 110–87 (OT) | CREATE TABLE INST, Here is a database schema( table schema); | What team has a score of w 110–87 (ot)?.It is not neccessary to use all the tables. |
SELECT COUNT YARDS FROM table WHERE SACK = 0 AND P/KO RET < 14 | CREATE TABLE INST, Here is a database schema( table schema); | What is the total of all YARDS with 0 SACK and less than 14 P/KO RET?.It is not neccessary to use all the tables. |
SELECT Attendance FROM table WHERE Result = l 20-17 | CREATE TABLE INST, Here is a database schema( table schema); | How many were in attendance when the result was l 20-17?.It is not neccessary to use all the tables. |
SELECT COUNT(yards) FROM table_19418696_3 WHERE qb_rating = "72.3" | CREATE TABLE INST, Here is a database schema( table schema); | How many yardage figures for the player with 72.3 QB rating?It is not neccessary to use all the tables. |
SELECT score FROM table_name_56 WHERE visitor = "bucks" AND home = "timberwolves" | CREATE TABLE INST, Here is a database schema( table schema); | Name the score for bucks with timberwolvesIt is not neccessary to use all the tables. |
SELECT runner_s__up FROM table_name_78 WHERE margin_of_victory = "3 strokes" AND winning_score = –13(68 - 70 - 66 - 71 = 275) | CREATE TABLE INST, Here is a database schema( table schema); | Which runner(s)-up had a Winning score of –13 (68-70-66-71=275) and a Margin of victory of 3 strokes?It is not neccessary to use all the tables. |
SELECT To par FROM table WHERE Country = spain | CREATE TABLE INST, Here is a database schema( table schema); | What is To par, when Country is "Spain"?.It is not neccessary to use all the tables. |
SELECT MAX County councils ( 2011 ) FROM table WHERE English party name = Communist Party of Norway | CREATE TABLE INST, Here is a database schema( table schema); | How many county councils for the communist party of norway.It is not neccessary to use all the tables. |
SELECT Meaning FROM table WHERE Pīnyīn = chē | CREATE TABLE INST, Here is a database schema( table schema); | WHAT IS THE MEANING WITH Pīnyīn of chē?.It is not neccessary to use all the tables. |
SELECT COUNT(season) FROM table_name_58 WHERE viewer_rank___number_ = "#4" | CREATE TABLE INST, Here is a database schema( table schema); | What season had a viewer rank of #4?It is not neccessary to use all the tables. |
SELECT MIN Area (km²) FROM table WHERE Province = napoli AND Comune = piano di sorrento AND Total (km²) < 121.14 | CREATE TABLE INST, Here is a database schema( table schema); | What is the Piano di Sorrento, Napoli lowest km2 with a total smaller than 121.14 km2?.It is not neccessary to use all the tables. |
SELECT torque FROM table_20007413_3 WHERE year = "1986" | CREATE TABLE INST, Here is a database schema( table schema); | Name the torque for 1986It is not neccessary to use all the tables. |
SELECT debut_album FROM table_1646960_3 WHERE winning_song = "Kemenangan Hati" | CREATE TABLE INST, Here is a database schema( table schema); | What is the debut album for the artist with the winning song kemenangan hati?It is not neccessary to use all the tables. |
SELECT home_team FROM table_name_11 WHERE away_team = "millwall" | CREATE TABLE INST, Here is a database schema( table schema); | Who was the home team when millwall was the away team?It is not neccessary to use all the tables. |
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.admission_location = "TRANSFER FROM HOSP/EXTRAM" AND demographic.diagnosis = "HYPERGLYCEMIA;HYPONATREMIA" | CREATE TABLE INST, Here is a database schema( table schema); | what is the number of patients whose admission location is transfer from hosp/extram and primary disease is hyperglycemia;hyponatremia?It is not neccessary to use all the tables. |
SELECT opponent FROM table_name_53 WHERE kickoff_[a_] = "1:00" AND record = "3-7" | CREATE TABLE INST, Here is a database schema( table schema); | Which game had a kickoff at 1:00 and a record of 3-7?It is not neccessary to use all the tables. |
SELECT Venue FROM table WHERE Race = carfax 250 | CREATE TABLE INST, Here is a database schema( table schema); | What is the venue of teh carfax 250 race?.It is not neccessary to use all the tables. |
SELECT Position FROM table WHERE CFL Team = Winnipeg Blue Bombers | CREATE TABLE INST, Here is a database schema( table schema); | What is the position for the player with cfl team Winnipeg blue bombers?.It is not neccessary to use all the tables. |
SELECT MAX(laps) FROM table_name_11 WHERE team = "corvette racing" AND year = 2004 | CREATE TABLE INST, Here is a database schema( table schema); | Name the most laps for corvette racing in 2004It is not neccessary to use all the tables. |
SELECT party FROM table_name_55 WHERE ifop_5_30_09 = "2.5%" | CREATE TABLE INST, Here is a database schema( table schema); | Who had an Iflop of 2.5%?It is not neccessary to use all the tables. |
SELECT played_in FROM table_name_36 WHERE matches = "16" | CREATE TABLE INST, Here is a database schema( table schema); | Where were 16 matches played?It is not neccessary to use all the tables. |
SELECT Placing FROM table WHERE Horse = viewed | CREATE TABLE INST, Here is a database schema( table schema); | What place was the viewed horse?.It is not neccessary to use all the tables. |
SELECT COUNT Wins FROM table WHERE Final Placing = 24th | CREATE TABLE INST, Here is a database schema( table schema); | When 24th is the final placing how many wins are there?.It is not neccessary to use all the tables. |
SELECT COUNT(DISTINCT course_prerequisite.course_id), course.department, course.name, course.number FROM course, course_offering, course_prerequisite, semester WHERE course.course_id = course_offering.course_id AND course.course_id = course_prerequisite.pre_course_id AND course.department = 'EECS' AND semester.semester... | CREATE TABLE INST, Here is a database schema( table schema); | What is the most common prerequisite this semester ?It is not neccessary to use all the tables. |
SELECT Post FROM table WHERE Horse name = Chocolate Candy | CREATE TABLE INST, Here is a database schema( table schema); | Which post had the horse named chocolate candy?.It is not neccessary to use all the tables. |
SELECT card_type_code, SUM(card_number) FROM Customers_Cards GROUP BY card_type_code ORDER BY SUM(card_number) | CREATE TABLE INST, Here is a database schema( table schema); | Bar graph to show sum card number from different card type code, show in ascending by the y-axis please.It is not neccessary to use all the tables. |
SELECT Highest point FROM table WHERE Canton = vaud | CREATE TABLE INST, Here is a database schema( table schema); | What is the Canton of Vaud's highest point?.It is not neccessary to use all the tables. |
SELECT COUNT(capacity) FROM table_name_97 WHERE vehicle = "2003 holden commodore ute" | CREATE TABLE INST, Here is a database schema( table schema); | How much Capacity has a Vehicle of 2003 holden commodore ute?It is not neccessary to use all the tables. |
SELECT Date FROM table WHERE Score in final = 6–7(9), 6–2, (10–7) | CREATE TABLE INST, Here is a database schema( table schema); | What date was the score 6–7(9), 6–2, (10–7)?.It is not neccessary to use all the tables. |
SELECT MIN Division FROM table WHERE Reg. Season = 7th | CREATE TABLE INST, Here is a database schema( table schema); | Who was the lowest division in the 7th season?.It is not neccessary to use all the tables. |
SELECT "sales" FROM table_203_7 WHERE "single" = '"tic, tic tac"' | CREATE TABLE INST, Here is a database schema( table schema); | how many sales did the single tic tic tac have ?It is not neccessary to use all the tables. |
SELECT Record (Conf) FROM table WHERE Conference = wac | CREATE TABLE INST, Here is a database schema( table schema); | What is the recorded conference that was a Wac Conference?.It is not neccessary to use all the tables. |
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.gender = "F" AND demographic.expire_flag = "1" | CREATE TABLE INST, Here is a database schema( table schema); | how many female patients died?It is not neccessary to use all the tables. |
SELECT player FROM table_name_78 WHERE score = 69 - 74 = 143 AND country = "colombia" | CREATE TABLE INST, Here is a database schema( table schema); | Who scored 69-74=143 for Colombia?It is not neccessary to use all the tables. |
SELECT dept_name FROM instructor GROUP BY dept_name ORDER BY AVG(salary) DESC LIMIT 1 | CREATE TABLE INST, Here is a database schema( table schema); | Find the name of the department which has the highest average salary of professors.It is not neccessary to use all the tables. |
SELECT name FROM table_name_56 WHERE city = "louisville" AND floors > 35 | CREATE TABLE INST, Here is a database schema( table schema); | What building in Louisville had more than 35 floors?It is not neccessary to use all the tables. |
SELECT MAX Administrative Panel FROM table WHERE Cultural and Educational Panel = 2 AND Industrial and Commercial Panel > 4 | CREATE TABLE INST, Here is a database schema( table schema); | What is the highest administrative panel with a cultural and educational panel of 2 plus an industrial and commercial panel larger than 4?.It is not neccessary to use all the tables. |
SELECT final_placing FROM table_name_12 WHERE poles = 0 AND races > 16 AND podiums = 16 | CREATE TABLE INST, Here is a database schema( table schema); | What is the final placing of the team with 0 ples more than 16 races and 16 podiums?It is not neccessary to use all the tables. |
SELECT AVG(total) FROM table_name_70 WHERE gold = 0 AND rank < 16 AND nation = "georgia" AND bronze > 2 | CREATE TABLE INST, Here is a database schema( table schema); | What is the average Total that has a Gold of 0 when the rank is less than 16 the nation is Georgia and there is more than 2 for Bronze?It is not neccessary to use all the tables. |
SELECT results FROM table_1341423_46 WHERE incumbent = "Norman Sisisky" | CREATE TABLE INST, Here is a database schema( table schema); | What was the result of the election featuring incumbent norman sisisky?It is not neccessary to use all the tables. |
SELECT COUNT(year_named) FROM table_16799784_4 WHERE name = "Otafuku Tholi" | CREATE TABLE INST, Here is a database schema( table schema); | How many schools are named otafuku tholi?It is not neccessary to use all the tables. |
SELECT socket FROM table_name_34 WHERE release_date = "september 10, 2009" AND order_part_number = "amm300dbo22gq" | CREATE TABLE INST, Here is a database schema( table schema); | What is the socket with an order part number of amm300dbo22gq and a September 10, 2009 release date?It is not neccessary to use all the tables. |
SELECT score FROM table_name_85 WHERE points = 96 | CREATE TABLE INST, Here is a database schema( table schema); | What was the score of the game with 96 points?It is not neccessary to use all the tables. |
SELECT AVG(goal_difference) FROM table_name_4 WHERE goals_against = 51 AND losses < 17 | CREATE TABLE INST, Here is a database schema( table schema); | What is the average goal difference with 51 goals scored against and less than 17 losses?It is not neccessary to use all the tables. |
SELECT engine FROM table_name_67 WHERE torque = "lb·ft (n·m)" | CREATE TABLE INST, Here is a database schema( table schema); | Which engine has a torgue of lb·ft (n·m)?It is not neccessary to use all the tables. |
SELECT Team FROM table WHERE Opponent = Elfsborg | CREATE TABLE INST, Here is a database schema( table schema); | what was the name of the team opponent to elfsborg.It is not neccessary to use all the tables. |
SELECT COUNT(party) FROM table_1341930_5 WHERE district = "Arkansas 1" | CREATE TABLE INST, Here is a database schema( table schema); | What is the number of party in the arkansas 1 districtIt is not neccessary to use all the tables. |
SELECT permanence_of_the_body FROM table_11609814_1 WHERE purity = "Rudra" | CREATE TABLE INST, Here is a database schema( table schema); | what's the permanence of the body where purity is rudraIt is not neccessary to use all the tables. |
SELECT t1.culturesite FROM (SELECT microlab.culturesite, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM microlab WHERE DATETIME(microlab.culturetakentime, 'start of year') = DATETIME(CURRENT_TIME(), 'start of year', '-1 year') GROUP BY microlab.culturesite) AS t1 WHERE t1.c1 <= 5 | CREATE TABLE INST, Here is a database schema( table schema); | in the last year what are the five most commonly ordered specimen tests?It is not neccessary to use all the tables. |
SELECT score FROM table_name_49 WHERE date = "1 september" | CREATE TABLE INST, Here is a database schema( table schema); | What was the score of the game on 1 september?It is not neccessary to use all the tables. |
SELECT COUNT Race caller FROM table WHERE Trophy presentation = Bob Costas and Charlsie Cantey | CREATE TABLE INST, Here is a database schema( table schema); | Name the total number for race caller for bob costas and charlsie cantey.It is not neccessary to use all the tables. |
SELECT melbourne FROM table_name_38 WHERE perth = "no" AND adelaide = "no" AND auckland = "no" AND sydney = "yes" | CREATE TABLE INST, Here is a database schema( table schema); | Name the melbourne with perth adelaide and auckland of no with sydney of yesIt is not neccessary to use all the tables. |
SELECT award_show FROM table_name_66 WHERE year = 2004 AND category = "most popular drama" | CREATE TABLE INST, Here is a database schema( table schema); | On which award show was Bad Girls nominated for Most Popular Drama in 2004?It is not neccessary to use all the tables. |
SELECT Type FROM table WHERE Entered service = 2000 | CREATE TABLE INST, Here is a database schema( table schema); | What type entered service in 2000?.It is not neccessary to use all the tables. |
SELECT engine_family FROM table_26352332_4 WHERE displacement_s_ = "10.5L" | CREATE TABLE INST, Here is a database schema( table schema); | Where the displacement(s) is 10.5L is what is the engine family?It is not neccessary to use all the tables. |
SELECT 2007 FROM table WHERE 2011 = nms | CREATE TABLE INST, Here is a database schema( table schema); | What is the 2007 value with NMS in 2011?.It is not neccessary to use all the tables. |
SELECT AVG(position) FROM table_name_60 WHERE lost < 7 | CREATE TABLE INST, Here is a database schema( table schema); | What is the position when lost is less than 7?It is not neccessary to use all the tables. |
SELECT Genre FROM table WHERE Airing date = 12 feb- 9 mar | CREATE TABLE INST, Here is a database schema( table schema); | Which genre aired on 12 feb- 9 mar?.It is not neccessary to use all the tables. |
SELECT MAX Draws FROM table WHERE Season > 1926 AND Wins < 0 | CREATE TABLE INST, Here is a database schema( table schema); | What is the highest Draws for a season later than 1926 with less than 0 wins?.It is not neccessary to use all the tables. |
SELECT COUNT(*) AS AnsweredVolume, TIME_TO_STR(P.CreationDate, '%Y') AS "year", TIME_TO_STR(P.CreationDate, '%m') AS Month FROM Posts AS P WHERE (Tags LIKE '%<azure%' OR Tags LIKE '%<windows-azure%' OR Tags LIKE '%<sql-azure>%' OR Tags LIKE '%<tfs-azure>%' OR Tags LIKE '%<servicebus>%' OR Tags LIKE '%<acs>%' OR Tags LI... | CREATE TABLE INST, Here is a database schema( table schema); | Azure thread volume with accepted answers by month.It is not neccessary to use all the tables. |
SELECT Player FROM table WHERE NHL team = San Jose Sharks AND Nationality = United States | CREATE TABLE INST, Here is a database schema( table schema); | NHL team player San Jose Sharks is United States nationally..It is not neccessary to use all the tables. |
SELECT Date FROM table WHERE Location = gillette stadium AND Result = 40-21 | CREATE TABLE INST, Here is a database schema( table schema); | What was the date of the game played at Gillette Stadium with a score of 40-21?.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.