question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
What were the Feb temperatures in East Stroudsburg?
|
CREATE TABLE table_name_63 (feb VARCHAR, city VARCHAR)
|
SELECT feb FROM table_name_63 WHERE city = "east stroudsburg"
|
Which away team had a Score of 2–0?
|
CREATE TABLE table_name_53 (away_team VARCHAR, score VARCHAR)
|
SELECT away_team FROM table_name_53 WHERE score = "2–0"
|
What rank has less than 16 gold, more than 2 bronze and silver, and a total of 14?
|
CREATE TABLE table_name_44 (rank VARCHAR, total VARCHAR, silver VARCHAR, gold VARCHAR, bronze VARCHAR)
|
SELECT rank FROM table_name_44 WHERE gold < 16 AND bronze > 2 AND silver > 2 AND total = 14
|
Who was the ran as an incumbent leader first in 1818?
|
CREATE TABLE table_2668254_17 (incumbent VARCHAR, first_elected VARCHAR)
|
SELECT incumbent FROM table_2668254_17 WHERE first_elected = "1818"
|
Who are the rowers for Australia?
|
CREATE TABLE table_name_54 (rowers VARCHAR, country VARCHAR)
|
SELECT rowers FROM table_name_54 WHERE country = "australia"
|
When North Melbourne is the Away team, what is the total number of the Crowd?
|
CREATE TABLE table_name_46 (crowd VARCHAR, away_team VARCHAR)
|
SELECT COUNT(crowd) FROM table_name_46 WHERE away_team = "north melbourne"
|
What year did the event in Hiroshima take place?
|
CREATE TABLE table_name_70 (year VARCHAR, location VARCHAR)
|
SELECT COUNT(year) FROM table_name_70 WHERE location = "hiroshima"
|
What Volume:Issue that has Peter Cetera as the artist and was on top for longer than 1 week?
|
CREATE TABLE table_name_97 (volume VARCHAR, weeks_on_top VARCHAR, artist VARCHAR)
|
SELECT volume AS :issue FROM table_name_97 WHERE weeks_on_top > 1 AND artist = "peter cetera"
|
What was the attendance of april 17?
|
CREATE TABLE table_name_83 (attendance INTEGER, date VARCHAR)
|
SELECT SUM(attendance) FROM table_name_83 WHERE date = "april 17"
|
What is the final result of the game that was played on October 8, 2000?
|
CREATE TABLE table_name_70 (result VARCHAR, date VARCHAR)
|
SELECT result FROM table_name_70 WHERE date = "october 8, 2000"
|
What is Record, when Date is 1996?
|
CREATE TABLE table_name_45 (record VARCHAR, date VARCHAR)
|
SELECT record FROM table_name_45 WHERE date = "1996"
|
What Competition's Score was 1-2?
|
CREATE TABLE table_name_76 (competition VARCHAR, score VARCHAR)
|
SELECT competition FROM table_name_76 WHERE score = "1-2"
|
How many years was Reasons to be Pretty nominated for best play?
|
CREATE TABLE table_name_83 (year VARCHAR, category VARCHAR)
|
SELECT COUNT(year) FROM table_name_83 WHERE category = "best play"
|
What is the save of the game on September 15?
|
CREATE TABLE table_name_92 (save VARCHAR, date VARCHAR)
|
SELECT save FROM table_name_92 WHERE date = "september 15"
|
What is the original Release date of the Track written by Dallas Frazier?
|
CREATE TABLE table_name_27 (original_release VARCHAR, writer_s_ VARCHAR)
|
SELECT original_release FROM table_name_27 WHERE writer_s_ = "dallas frazier"
|
What is the start of the Team of Andretti Green Racing with a finish higher than 3 in a year before 2007?
|
CREATE TABLE table_name_33 (start INTEGER, year VARCHAR, team VARCHAR, finish VARCHAR)
|
SELECT AVG(start) FROM table_name_33 WHERE team = "andretti green racing" AND finish > 3 AND year < 2007
|
What was the To par score for the tournament with a margin of victory of 1 stroke?
|
CREATE TABLE table_name_44 (to_par VARCHAR, margin_of_victory VARCHAR)
|
SELECT to_par FROM table_name_44 WHERE margin_of_victory = "1 stroke"
|
Which Winner has Semi-Finalists of £2,000?
|
CREATE TABLE table_name_71 (winner VARCHAR, semi_finalists VARCHAR)
|
SELECT winner FROM table_name_71 WHERE semi_finalists = "£2,000"
|
Which set 3 has a Time of 10:00, and a Score of 3–2, and a Total of 113–102?
|
CREATE TABLE table_name_61 (set_3 VARCHAR, total VARCHAR, time VARCHAR, score VARCHAR)
|
SELECT set_3 FROM table_name_61 WHERE time = "10:00" AND score = "3–2" AND total = "113–102"
|
Who is Winners that has editions of 1992, 2003 as Not Winning
|
CREATE TABLE table_name_77 (winners VARCHAR, not_winning_editions VARCHAR)
|
SELECT winners FROM table_name_77 WHERE not_winning_editions = "1992, 2003"
|
WHAT IS THE ROUND FOR ZACH BOYCHUK?
|
CREATE TABLE table_name_6 (round VARCHAR, player VARCHAR)
|
SELECT COUNT(round) FROM table_name_6 WHERE player = "zach boychuk"
|
What is the time for the racer on grid 19?
|
CREATE TABLE table_name_70 (time_retired VARCHAR, grid VARCHAR)
|
SELECT time_retired FROM table_name_70 WHERE grid = 19
|
What day was the score 200 (-16)?
|
CREATE TABLE table_15346009_1 (date VARCHAR, score VARCHAR)
|
SELECT date FROM table_15346009_1 WHERE score = "200 (-16)"
|
What type of school is Stratford University?
|
CREATE TABLE table_2076608_1 (type VARCHAR, school VARCHAR)
|
SELECT type FROM table_2076608_1 WHERE school = "Stratford University"
|
What is the name of the event where Cornell-Penn played?
|
CREATE TABLE table_name_33 (name VARCHAR, teams VARCHAR)
|
SELECT name FROM table_name_33 WHERE teams = "cornell-penn"
|
How many points on average had a position smaller than 8, 16 plays, and a lost larger than 9?
|
CREATE TABLE table_name_20 (points INTEGER, lost VARCHAR, position VARCHAR, played VARCHAR)
|
SELECT AVG(points) FROM table_name_20 WHERE position < 8 AND played = 16 AND lost > 9
|
How many total medals does a country with more than 1 silver medals have?
|
CREATE TABLE table_name_32 (total INTEGER, silver INTEGER)
|
SELECT SUM(total) FROM table_name_32 WHERE silver > 1
|
Which Rank has a Third of 2, and Winners smaller than 2?
|
CREATE TABLE table_name_98 (rank INTEGER, third VARCHAR, winners VARCHAR)
|
SELECT AVG(rank) FROM table_name_98 WHERE third = 2 AND winners < 2
|
How many different addresses do the students currently live?
|
CREATE TABLE Students (current_address_id VARCHAR)
|
SELECT COUNT(DISTINCT current_address_id) FROM Students
|
What is the Date with an Away that is central blues?
|
CREATE TABLE table_name_15 (date VARCHAR, away VARCHAR)
|
SELECT date FROM table_name_15 WHERE away = "central blues"
|
Tell me the runs for b lee
|
CREATE TABLE table_name_15 (runs VARCHAR, player VARCHAR)
|
SELECT runs FROM table_name_15 WHERE player = "b lee"
|
What was the attendance at the Kings game when Anaheim was the visiting team?
|
CREATE TABLE table_name_22 (attendance VARCHAR, visitor VARCHAR)
|
SELECT attendance FROM table_name_22 WHERE visitor = "anaheim"
|
what is the english translation when the Language is english, Draw is smaller than 16, and the Artist is aysel and arash?
|
CREATE TABLE table_name_51 (english_translation VARCHAR, artist VARCHAR, language VARCHAR, draw VARCHAR)
|
SELECT english_translation FROM table_name_51 WHERE language = "english" AND draw < 16 AND artist = "aysel and arash"
|
What is the first round that had #67 the racer's group with the fastest lap?
|
CREATE TABLE table_19751479_4 (rnd INTEGER, fastest_lap VARCHAR)
|
SELECT MIN(rnd) FROM table_19751479_4 WHERE fastest_lap = "#67 The Racer's Group"
|
How many were Wounded in the Artillery Corps unit while having 0 off 0 men Killed?
|
CREATE TABLE table_name_24 (wounded VARCHAR, killed VARCHAR, unit VARCHAR)
|
SELECT wounded FROM table_name_24 WHERE killed = "0 off 0 men" AND unit = "artillery corps"
|
How many tries when 22 are played with 1 draw and a try bonus of 13?
|
CREATE TABLE table_name_22 (tries_against VARCHAR, try_bonus VARCHAR, played VARCHAR, drawn VARCHAR)
|
SELECT tries_against FROM table_name_22 WHERE played = "22" AND drawn = "1" AND try_bonus = "13"
|
What is the name of the track that lasts 5:30?
|
CREATE TABLE table_10416547_1 (track VARCHAR, duration VARCHAR)
|
SELECT track AS title FROM table_10416547_1 WHERE duration = "5:30"
|
Which Language has a Number of 553 633?
|
CREATE TABLE table_name_64 (language VARCHAR, number VARCHAR)
|
SELECT language FROM table_name_64 WHERE number = "553 633"
|
What is the status of the airport line?
|
CREATE TABLE table_1603807_2 (status VARCHAR, line VARCHAR)
|
SELECT status FROM table_1603807_2 WHERE line = "Airport line"
|
Which course had a rest day for the Race Leader?
|
CREATE TABLE table_name_1 (course VARCHAR, race_leader VARCHAR)
|
SELECT course FROM table_name_1 WHERE race_leader = "rest day"
|
WHAT IS THE TRIES WITH POINTS 190?
|
CREATE TABLE table_name_36 (tries_for VARCHAR, points_for VARCHAR)
|
SELECT tries_for FROM table_name_36 WHERE points_for = "190"
|
Who is the player in round 6?
|
CREATE TABLE table_name_94 (player VARCHAR, round VARCHAR)
|
SELECT player FROM table_name_94 WHERE round = 6
|
What was the surface of the match that ended in a score of 5–7, 6–4, [10–7]?
|
CREATE TABLE table_name_1 (surface VARCHAR, score_in_final VARCHAR)
|
SELECT surface FROM table_name_1 WHERE score_in_final = "5–7, 6–4, [10–7]"
|
what year was the first elected incumbant Sidney R. Yates?
|
CREATE TABLE table_1341690_13 (first_elected VARCHAR, incumbent VARCHAR)
|
SELECT first_elected FROM table_1341690_13 WHERE incumbent = "Sidney R. Yates"
|
Provide me with the name of all the village (German) that are part of the village (Slovenian) with sele srednji kot.
|
CREATE TABLE table_10798421_1 (village__german_ VARCHAR, village__slovenian_ VARCHAR)
|
SELECT village__german_ FROM table_10798421_1 WHERE village__slovenian_ = "Sele Srednji Kot"
|
Who wrote episode 11?
|
CREATE TABLE table_17467578_1 (written_by VARCHAR, episode__number VARCHAR)
|
SELECT written_by FROM table_17467578_1 WHERE episode__number = 11
|
Which rampage killed 8 in Israel?
|
CREATE TABLE table_name_44 (name VARCHAR, killed VARCHAR, country VARCHAR)
|
SELECT name FROM table_name_44 WHERE killed = "8" AND country = "israel"
|
What is the rounds of rider Mika Kallio 1 of the Ducati Marlboro team?
|
CREATE TABLE table_name_67 (rounds VARCHAR, team VARCHAR, rider VARCHAR)
|
SELECT rounds FROM table_name_67 WHERE team = "ducati marlboro team" AND rider = "mika kallio 1"
|
What is the total number of games played of the club with less than 40 goals scored, 9 losses, 39 goals conceded, and more than 2 draws?
|
CREATE TABLE table_name_33 (games_played VARCHAR, draws VARCHAR, goals_conceded VARCHAR, goals_scored VARCHAR, loses VARCHAR)
|
SELECT COUNT(games_played) FROM table_name_33 WHERE goals_scored < 40 AND loses = 9 AND goals_conceded = 39 AND draws > 2
|
what's the livingstone with fitzroy being 9499
|
CREATE TABLE table_12570207_1 (livingstone VARCHAR, fitzroy VARCHAR)
|
SELECT livingstone FROM table_12570207_1 WHERE fitzroy = 9499
|
What is the nickname that means god holds my life?
|
CREATE TABLE table_11908801_1 (nickname VARCHAR, meaning VARCHAR)
|
SELECT nickname FROM table_11908801_1 WHERE meaning = "God Holds My Life"
|
What's the smallest March when the record is 22-12-6?
|
CREATE TABLE table_name_7 (march INTEGER, record VARCHAR)
|
SELECT MIN(march) FROM table_name_7 WHERE record = "22-12-6"
|
What year for geelong player john roberts?
|
CREATE TABLE table_name_77 (year VARCHAR, opponent VARCHAR, player VARCHAR)
|
SELECT year FROM table_name_77 WHERE opponent = "geelong" AND player = "john roberts"
|
What was the record of the game played on January 5?
|
CREATE TABLE table_23285761_7 (record VARCHAR, date VARCHAR)
|
SELECT record FROM table_23285761_7 WHERE date = "January 5"
|
Name the probably futures for गरेस् gares 'may you do'
|
CREATE TABLE table_16337329_5 (probable_future VARCHAR, imperative VARCHAR)
|
SELECT probable_future FROM table_16337329_5 WHERE imperative = "गरेस् gares 'may you do'"
|
What was the nick name for the school established in 1958?
|
CREATE TABLE table_name_71 (nickname VARCHAR, established VARCHAR)
|
SELECT nickname FROM table_name_71 WHERE established = 1958
|
What is the Latin equivalent for the Phagspa of ꡙ?
|
CREATE TABLE table_name_72 (latin VARCHAR, ’phagspa VARCHAR)
|
SELECT latin FROM table_name_72 WHERE ’phagspa = "ꡙ"
|
What is the official name of the municipality whose name in Basque is Bilar?
|
CREATE TABLE table_300283_1 (official_name VARCHAR, name_in_basque VARCHAR)
|
SELECT official_name FROM table_300283_1 WHERE name_in_basque = "Bilar"
|
I want the location for round of 3 and time of 4:40
|
CREATE TABLE table_name_4 (location VARCHAR, round VARCHAR, time VARCHAR)
|
SELECT location FROM table_name_4 WHERE round = 3 AND time = "4:40"
|
Who ran for office in the Alabama 1 district?
|
CREATE TABLE table_1342198_3 (candidates VARCHAR, district VARCHAR)
|
SELECT candidates FROM table_1342198_3 WHERE district = "Alabama 1"
|
What is the ground of the Geelong Away team?
|
CREATE TABLE table_name_74 (ground VARCHAR, away_team VARCHAR)
|
SELECT ground FROM table_name_74 WHERE away_team = "geelong"
|
What is the weight of the shortest person?
|
CREATE TABLE people (Weight VARCHAR, Height VARCHAR)
|
SELECT Weight FROM people ORDER BY Height LIMIT 1
|
What was the total number of years than had best improved singer (躍進歌手)?
|
CREATE TABLE table_name_52 (year INTEGER, category VARCHAR)
|
SELECT SUM(year) FROM table_name_52 WHERE category = "best improved singer (躍進歌手)"
|
Name the average 2008 for beijing and 2005 more than 2
|
CREATE TABLE table_name_21 (year VARCHAR)
|
SELECT AVG(2008) FROM table_name_21 WHERE year = "beijing" AND 2005 > 2
|
How many Games for Terence Morris?
|
CREATE TABLE table_name_57 (games VARCHAR, name VARCHAR)
|
SELECT games FROM table_name_57 WHERE name = "terence morris"
|
what is the location where there are over 200 cattle businesses
|
CREATE TABLE table_29012710_1 (province VARCHAR, number_of_dairy_farms VARCHAR)
|
SELECT province FROM table_29012710_1 WHERE number_of_dairy_farms = 200
|
What is the lowest pick number?
|
CREATE TABLE table_14655757_1 (pick__number INTEGER)
|
SELECT MIN(pick__number) FROM table_14655757_1
|
who is the reader of the audiobook authored by cole, stephen stephen cole and released on 2008-11-13 13 november 2008
|
CREATE TABLE table_20174050_24 (reader VARCHAR, author VARCHAR, release_date VARCHAR)
|
SELECT reader FROM table_20174050_24 WHERE author = "Cole, Stephen Stephen Cole" AND release_date = "2008-11-13 13 November 2008"
|
A player was moved to celtic had an end of what date?
|
CREATE TABLE table_name_99 (end_date VARCHAR, to_club VARCHAR)
|
SELECT end_date FROM table_name_99 WHERE to_club = "celtic"
|
Name the score for 2 june 2008
|
CREATE TABLE table_name_97 (score VARCHAR, date VARCHAR)
|
SELECT score FROM table_name_97 WHERE date = "2 june 2008"
|
What is the Home Captain which has Waca Ground as a Venue
|
CREATE TABLE table_name_81 (home_captain VARCHAR, venue VARCHAR)
|
SELECT home_captain FROM table_name_81 WHERE venue = "waca ground"
|
What is the least amount of people that attended a game when Essendon was the away team?
|
CREATE TABLE table_name_83 (crowd INTEGER, away_team VARCHAR)
|
SELECT MIN(crowd) FROM table_name_83 WHERE away_team = "essendon"
|
what is the branding when the owner is jim pattison group and the frequency is fm 94.5?
|
CREATE TABLE table_name_55 (branding VARCHAR, owner VARCHAR, frequency VARCHAR)
|
SELECT branding FROM table_name_55 WHERE owner = "jim pattison group" AND frequency = "fm 94.5"
|
What are the lowest laps Alex Tagliani did for the Forsythe Racing team?
|
CREATE TABLE table_name_79 (laps INTEGER, team VARCHAR, driver VARCHAR)
|
SELECT MIN(laps) FROM table_name_79 WHERE team = "forsythe racing" AND driver = "alex tagliani"
|
Name the country for troops per one million being 54.9
|
CREATE TABLE table_30108346_1 (country VARCHAR, troops_per_one_million_population VARCHAR)
|
SELECT country FROM table_30108346_1 WHERE troops_per_one_million_population = "54.9"
|
How many employees have salary between 100000 and 200000?
|
CREATE TABLE Employee (salary INTEGER)
|
SELECT COUNT(*) FROM Employee WHERE salary BETWEEN 100000 AND 200000
|
During runs 332, what was the venue?
|
CREATE TABLE table_name_60 (venue VARCHAR, runs VARCHAR)
|
SELECT venue FROM table_name_60 WHERE runs = "332"
|
What season had the Roma-Napoli match on 12 September 1993?
|
CREATE TABLE table_name_1 (season VARCHAR, match VARCHAR, date VARCHAR)
|
SELECT season FROM table_name_1 WHERE match = "roma-napoli" AND date = "12 september 1993"
|
The time of 8:34.27 was set by what athlete?
|
CREATE TABLE table_name_90 (athlete VARCHAR, time VARCHAR)
|
SELECT athlete FROM table_name_90 WHERE time = "8:34.27"
|
What date was the game when the away team was carlton?
|
CREATE TABLE table_name_45 (date VARCHAR, away_team VARCHAR)
|
SELECT date FROM table_name_45 WHERE away_team = "carlton"
|
Name the tv time for attendance of 69,551
|
CREATE TABLE table_name_84 (tv_time VARCHAR, attendance VARCHAR)
|
SELECT tv_time FROM table_name_84 WHERE attendance = "69,551"
|
What is the method of resolution for the fight against akihiro gono?
|
CREATE TABLE table_name_31 (method VARCHAR, opponent VARCHAR)
|
SELECT method FROM table_name_31 WHERE opponent = "akihiro gono"
|
Who was the opponent with a series of 3-2?
|
CREATE TABLE table_name_54 (opponent VARCHAR, series VARCHAR)
|
SELECT opponent FROM table_name_54 WHERE series = "3-2"
|
How many parks is Zippin Pippin located in
|
CREATE TABLE table_2665085_1 (park VARCHAR, name VARCHAR)
|
SELECT COUNT(park) FROM table_2665085_1 WHERE name = "Zippin Pippin"
|
Who was the defensive award winner when the rookie award was given to Daryl Veltman and the offensive award was given to Mark Steenhuis?
|
CREATE TABLE table_14132239_3 (defensive VARCHAR, rookie VARCHAR, offensive VARCHAR)
|
SELECT defensive FROM table_14132239_3 WHERE rookie = "Daryl Veltman" AND offensive = "Mark Steenhuis"
|
How many entrants did the events won by Frank Gary average?
|
CREATE TABLE table_name_21 (entrants INTEGER, winner VARCHAR)
|
SELECT AVG(entrants) FROM table_name_21 WHERE winner = "frank gary"
|
What is the total number of First elected that has a country represented in Baltimore county, a district of 06.0 6, and a committee of economic matters?
|
CREATE TABLE table_name_80 (first_elected VARCHAR, committee VARCHAR, counties_represented VARCHAR, district VARCHAR)
|
SELECT COUNT(first_elected) FROM table_name_80 WHERE counties_represented = "baltimore county" AND district = "06.0 6" AND committee = "economic matters"
|
Which Points for has a Losing bonus of 2, and a Club of bridgend sports rfc?
|
CREATE TABLE table_name_33 (points_for VARCHAR, losing_bonus VARCHAR, club VARCHAR)
|
SELECT points_for FROM table_name_33 WHERE losing_bonus = "2" AND club = "bridgend sports rfc"
|
What is the Chassis of the Cooper Car Company after 1965 when the engine was a Maserati v12?
|
CREATE TABLE table_name_33 (chassis VARCHAR, engine VARCHAR, year VARCHAR, team VARCHAR)
|
SELECT chassis FROM table_name_33 WHERE year > 1965 AND team = "cooper car company" AND engine = "maserati v12"
|
What is the total number in the season for the #30 Robert Berlinger series?
|
CREATE TABLE table_name_73 (no_in_season VARCHAR, directed_by VARCHAR, no_in_series VARCHAR)
|
SELECT COUNT(no_in_season) FROM table_name_73 WHERE directed_by = "robert berlinger" AND no_in_series = 30
|
When is the Mexican grand prix?
|
CREATE TABLE table_name_24 (date VARCHAR, race VARCHAR)
|
SELECT date FROM table_name_24 WHERE race = "mexican grand prix"
|
what is the telugu name తెలుగు of kannada name ಕನ್ನಡ utthara ಉತ್ತರ
|
CREATE TABLE table_201400_2 (telugu_name_తెలుగు VARCHAR, kannada_name_ಕನ್ನಡ VARCHAR)
|
SELECT telugu_name_తెలుగు FROM table_201400_2 WHERE kannada_name_ಕನ್ನಡ = "Utthara ಉತ್ತರ"
|
How many rounds did geoff lees drive with chassis of n180?
|
CREATE TABLE table_name_15 (rounds VARCHAR, chassis VARCHAR, driver VARCHAR)
|
SELECT rounds FROM table_name_15 WHERE chassis = "n180" AND driver = "geoff lees"
|
What is the smallest played amount when there are 2 draws and an against of more than 73?
|
CREATE TABLE table_name_66 (played INTEGER, drawn VARCHAR, against VARCHAR)
|
SELECT MIN(played) FROM table_name_66 WHERE drawn = 2 AND against > 73
|
What is the institution that was located is circleville, ohio?
|
CREATE TABLE table_24195232_1 (institution VARCHAR, location VARCHAR)
|
SELECT institution FROM table_24195232_1 WHERE location = "Circleville, Ohio"
|
Name the 1821 with 1861 of 3733
|
CREATE TABLE table_name_30 (Id VARCHAR)
|
SELECT 1821 FROM table_name_30 WHERE 1861 = "3733"
|
Name the opponent for october 2, 1983
|
CREATE TABLE table_14940519_1 (opponent VARCHAR, date VARCHAR)
|
SELECT opponent FROM table_14940519_1 WHERE date = "October 2, 1983"
|
Name the number of poles for 15th position
|
CREATE TABLE table_24466191_1 (poles VARCHAR, position VARCHAR)
|
SELECT COUNT(poles) FROM table_24466191_1 WHERE position = "15th"
|
How many times was the final score l 96–123 (ot)?
|
CREATE TABLE table_11964154_7 (record VARCHAR, score VARCHAR)
|
SELECT COUNT(record) FROM table_11964154_7 WHERE score = "L 96–123 (OT)"
|
Where did Footscray play as the away team?
|
CREATE TABLE table_name_76 (venue VARCHAR, away_team VARCHAR)
|
SELECT venue FROM table_name_76 WHERE away_team = "footscray"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.