question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
What were the new entries for the Semi-Finals round with fewer than 8 fixtures? | CREATE TABLE table_name_97 (new_entries_this_round VARCHAR, number_of_fixtures VARCHAR, round VARCHAR) | SELECT new_entries_this_round FROM table_name_97 WHERE number_of_fixtures < 8 AND round = "semi-finals" |
What was the club when home ground was Central Reserve? | CREATE TABLE table_name_59 (club VARCHAR, home_ground VARCHAR) | SELECT club FROM table_name_59 WHERE home_ground = "central reserve" |
What's the GFL Premiership when the home ground was Leopold Memorial Park? | CREATE TABLE table_name_4 (gfl_premierships VARCHAR, home_ground VARCHAR) | SELECT gfl_premierships FROM table_name_4 WHERE home_ground = "leopold memorial park" |
What's the location where the Years in GFL was 1988-? | CREATE TABLE table_name_39 (location VARCHAR, years_in_gfl VARCHAR) | SELECT location FROM table_name_39 WHERE years_in_gfl = "1988-" |
What's the home ground of the Lions? | CREATE TABLE table_name_15 (home_ground VARCHAR, nickname VARCHAR) | SELECT home_ground FROM table_name_15 WHERE nickname = "lions" |
What is the location of the Saints having 1979- as Years in GFL? | CREATE TABLE table_name_37 (location VARCHAR, years_in_gfl VARCHAR, nickname VARCHAR) | SELECT location FROM table_name_37 WHERE years_in_gfl = "1979-" AND nickname = "saints" |
What is the type of the player who ended in 2013, had a summer transfer window, and moved from kalmar ff? | CREATE TABLE table_name_34 (type VARCHAR, moving_from VARCHAR, ends VARCHAR, transfer_window VARCHAR) | SELECT type FROM table_name_34 WHERE ends = 2013 AND transfer_window = "summer" AND moving_from = "kalmar ff" |
Where did the player with a transfer type, a summer transfer window, and ended before 2013 move from? | CREATE TABLE table_name_38 (moving_from VARCHAR, ends VARCHAR, type VARCHAR, transfer_window VARCHAR) | SELECT moving_from FROM table_name_38 WHERE type = "transfer" AND transfer_window = "summer" AND ends < 2013 |
What is the transfer window for larsson? | CREATE TABLE table_name_8 (transfer_window VARCHAR, name VARCHAR) | SELECT transfer_window FROM table_name_8 WHERE name = "larsson" |
What is the average end year of the player from swe and a summer transfer window? | CREATE TABLE table_name_81 (ends INTEGER, nat VARCHAR, transfer_window VARCHAR) | SELECT AVG(ends) FROM table_name_81 WHERE nat = "swe" AND transfer_window = "summer" |
What was the outcome on 2 December 2012? | CREATE TABLE table_name_26 (outcome VARCHAR, date VARCHAR) | SELECT outcome FROM table_name_26 WHERE date = "2 december 2012" |
What is the score of the final in $10,000 – tarakan , indonesia f2? | CREATE TABLE table_name_97 (score_in_final VARCHAR, tournament VARCHAR) | SELECT score_in_final FROM table_name_97 WHERE tournament = "$10,000 – tarakan , indonesia f2" |
What was the place for the score 70-72-69=211? | CREATE TABLE table_name_60 (place VARCHAR, score VARCHAR) | SELECT place FROM table_name_60 WHERE score = 70 - 72 - 69 = 211 |
What was the player for t9 and a score of 73-69-74=216? | CREATE TABLE table_name_97 (player VARCHAR, place VARCHAR, score VARCHAR) | SELECT player FROM table_name_97 WHERE place = "t9" AND score = 73 - 69 - 74 = 216 |
What was Stacy Lewis' place? | CREATE TABLE table_name_50 (place VARCHAR, player VARCHAR) | SELECT place FROM table_name_50 WHERE player = "stacy lewis" |
What was the score when the tie no was 13? | CREATE TABLE table_name_87 (score VARCHAR, tie_no VARCHAR) | SELECT score FROM table_name_87 WHERE tie_no = "13" |
What was the score when Burnley was the away team? | CREATE TABLE table_name_31 (score VARCHAR, away_team VARCHAR) | SELECT score FROM table_name_31 WHERE away_team = "burnley" |
What is the To par when the finish is 66? | CREATE TABLE table_name_32 (to_par VARCHAR, finish VARCHAR) | SELECT to_par FROM table_name_32 WHERE finish = "66" |
When the year won is 1981, 1987, and the finish is t46, what is the lowest total? | CREATE TABLE table_name_58 (total INTEGER, finish VARCHAR, year_s__won VARCHAR) | SELECT MIN(total) FROM table_name_58 WHERE finish = "t46" AND year_s__won = "1981, 1987" |
Which year was won with a finish of 68 | CREATE TABLE table_name_25 (year_s__won VARCHAR, finish VARCHAR) | SELECT year_s__won FROM table_name_25 WHERE finish = "68" |
WHTA IS THE SNATCH WITH A TOTAL OF LARGER THAN 318 KG AND BODY WEIGHT OF 84.15? | CREATE TABLE table_name_19 (snatch INTEGER, total__kg_ VARCHAR, bodyweight VARCHAR) | SELECT AVG(snatch) FROM table_name_19 WHERE total__kg_ > 318 AND bodyweight = 84.15 |
WHAT IS THE SNATCH WITH TOTAL KG SMALLER THAN 318, AND CLEAN JERK LARGER THAN 175? | CREATE TABLE table_name_45 (snatch INTEGER, total__kg_ VARCHAR, clean_ VARCHAR, _jerk VARCHAR) | SELECT MIN(snatch) FROM table_name_45 WHERE total__kg_ < 318 AND clean_ & _jerk > 175 |
What date has 2 for killed, and jaffa as the location? | CREATE TABLE table_name_44 (date VARCHAR, killed VARCHAR, location VARCHAR) | SELECT date FROM table_name_44 WHERE killed = "2" AND location = "jaffa" |
What is the injured that has skierlik as the location? | CREATE TABLE table_name_9 (injured VARCHAR, location VARCHAR) | SELECT injured FROM table_name_9 WHERE location = "skierlik" |
What is the 2nd leg that Team 1 is Union Berlin? | CREATE TABLE table_name_46 (team_1 VARCHAR) | SELECT 2 AS nd_leg FROM table_name_46 WHERE team_1 = "union berlin" |
What is the Apps for the player with 150 Goals and a Ratio of 0.52? | CREATE TABLE table_name_81 (apps VARCHAR, ratio VARCHAR, goals VARCHAR) | SELECT apps FROM table_name_81 WHERE ratio = 0.52 AND goals = 150 |
Which team won at the symmons plains raceway? | CREATE TABLE table_name_42 (team VARCHAR, circuit VARCHAR) | SELECT team FROM table_name_42 WHERE circuit = "symmons plains raceway" |
Which team won at winton motor raceway? | CREATE TABLE table_name_5 (team VARCHAR, circuit VARCHAR) | SELECT team FROM table_name_5 WHERE circuit = "winton motor raceway" |
Which circuit was the atcc round 7 at? | CREATE TABLE table_name_71 (circuit VARCHAR, series VARCHAR) | SELECT circuit FROM table_name_71 WHERE series = "atcc round 7" |
Which circuit did winfield team nissan win for the tooheys 1000? | CREATE TABLE table_name_68 (circuit VARCHAR, team VARCHAR, series VARCHAR) | SELECT circuit FROM table_name_68 WHERE team = "winfield team nissan" AND series = "tooheys 1000" |
What is the date for the tooheys 1000? | CREATE TABLE table_name_44 (date VARCHAR, series VARCHAR) | SELECT date FROM table_name_44 WHERE series = "tooheys 1000" |
what series was in sydney, new south wales? | CREATE TABLE table_name_49 (series VARCHAR, city___state VARCHAR) | SELECT series FROM table_name_49 WHERE city___state = "sydney, new south wales" |
What was the rank for 1.26 Ø-Pts in game 1458? | CREATE TABLE table_name_86 (rank VARCHAR, ø_pts VARCHAR, games VARCHAR) | SELECT COUNT(rank) FROM table_name_86 WHERE ø_pts > 1.26 AND games = 1458 |
What is the Outcome of the match with Partner Marcella Mesker and a Score of 6–4, 4–6, 4–6? | CREATE TABLE table_name_61 (outcome VARCHAR, partner VARCHAR, score VARCHAR) | SELECT outcome FROM table_name_61 WHERE partner = "marcella mesker" AND score = "6–4, 4–6, 4–6" |
What is the Surface of the match with a Score of 2–6, 6–4, 7–6? | CREATE TABLE table_name_30 (surface VARCHAR, score VARCHAR) | SELECT surface FROM table_name_30 WHERE score = "2–6, 6–4, 7–6" |
What is the Surface of the match played on October 5, 1987? | CREATE TABLE table_name_77 (surface VARCHAR, date VARCHAR) | SELECT surface FROM table_name_77 WHERE date = "october 5, 1987" |
What is the Date of the match with a Score of 0–6, 2–6 with Partner Marcella Mesker? | CREATE TABLE table_name_57 (date VARCHAR, partner VARCHAR, score VARCHAR) | SELECT date FROM table_name_57 WHERE partner = "marcella mesker" AND score = "0–6, 2–6" |
Who is the Opponents on May 3, 1982? | CREATE TABLE table_name_73 (opponents VARCHAR, date VARCHAR) | SELECT opponents FROM table_name_73 WHERE date = "may 3, 1982" |
What is the Score of the match on May 21, 1984 with Outcome of runner-up? | CREATE TABLE table_name_94 (score VARCHAR, outcome VARCHAR, date VARCHAR) | SELECT score FROM table_name_94 WHERE outcome = "runner-up" AND date = "may 21, 1984" |
What is the date of the 200m individual medley? | CREATE TABLE table_name_70 (date VARCHAR, event VARCHAR) | SELECT date FROM table_name_70 WHERE event = "200m individual medley" |
Which team was team 1 in the match where team 2 was olympique lyonnais (d2)? | CREATE TABLE table_name_20 (team_1 VARCHAR, team_2 VARCHAR) | SELECT team_1 FROM table_name_20 WHERE team_2 = "olympique lyonnais (d2)" |
What was the score of the match where paris sg (d1) was team 1? | CREATE TABLE table_name_63 (score VARCHAR, team_1 VARCHAR) | SELECT score FROM table_name_63 WHERE team_1 = "paris sg (d1)" |
Which Week has a Result of w 23–22? | CREATE TABLE table_name_77 (week VARCHAR, result VARCHAR) | SELECT week FROM table_name_77 WHERE result = "w 23–22" |
When was there a bye result? | CREATE TABLE table_name_32 (date VARCHAR, result VARCHAR) | SELECT date FROM table_name_32 WHERE result = "bye" |
When was the attendance 65,806? | CREATE TABLE table_name_40 (date VARCHAR, attendance VARCHAR) | SELECT date FROM table_name_40 WHERE attendance = "65,806" |
Who was the opponent after week 16? | CREATE TABLE table_name_43 (opponent VARCHAR, week INTEGER) | SELECT opponent FROM table_name_43 WHERE week > 16 |
What is Commissioned, when Laid Down is "6 September 2003"? | CREATE TABLE table_name_78 (commissioned VARCHAR, laid_down VARCHAR) | SELECT commissioned FROM table_name_78 WHERE laid_down = "6 september 2003" |
What is Launched, when Laid Down is "31 October 1981"? | CREATE TABLE table_name_63 (launched VARCHAR, laid_down VARCHAR) | SELECT launched FROM table_name_63 WHERE laid_down = "31 october 1981" |
What is Ship, when Commissioned is "13 March 1982"? | CREATE TABLE table_name_54 (ship VARCHAR, commissioned VARCHAR) | SELECT ship FROM table_name_54 WHERE commissioned = "13 march 1982" |
What is Launched, when Commissioned is "25 July 1998"? | CREATE TABLE table_name_50 (launched VARCHAR, commissioned VARCHAR) | SELECT launched FROM table_name_50 WHERE commissioned = "25 july 1998" |
What is Laid Down, when Hull Number is "CVN-69"? | CREATE TABLE table_name_85 (laid_down VARCHAR, hull_number VARCHAR) | SELECT laid_down FROM table_name_85 WHERE hull_number = "cvn-69" |
What is Laid Down, when Commissioned is "11 November 1989"? | CREATE TABLE table_name_90 (laid_down VARCHAR, commissioned VARCHAR) | SELECT laid_down FROM table_name_90 WHERE commissioned = "11 november 1989" |
Can you tell me the Position that has the Entrant of j ampt? | CREATE TABLE table_name_67 (position VARCHAR, entrant VARCHAR) | SELECT position FROM table_name_67 WHERE entrant = "j ampt" |
Can you tell me the Entrant that has the Laps of 17? | CREATE TABLE table_name_77 (entrant VARCHAR, laps VARCHAR) | SELECT entrant FROM table_name_77 WHERE laps = 17 |
Can you tell me the Position that has the Driver of bib stillwell? | CREATE TABLE table_name_41 (position VARCHAR, driver VARCHAR) | SELECT position FROM table_name_41 WHERE driver = "bib stillwell" |
What are the results for a game with an attendance of 41,429? | CREATE TABLE table_name_70 (result VARCHAR, attendance VARCHAR) | SELECT result FROM table_name_70 WHERE attendance = "41,429" |
Who were the opponents when there was an attendance of 48,165? | CREATE TABLE table_name_1 (opponent_number VARCHAR, attendance VARCHAR) | SELECT opponent_number FROM table_name_1 WHERE attendance = "48,165" |
What are the results for the game with 82,113 attending? | CREATE TABLE table_name_41 (result VARCHAR, attendance VARCHAR) | SELECT result FROM table_name_41 WHERE attendance = "82,113" |
Who was the girl on week 4 after week 3's Mikaela James? | CREATE TABLE table_name_12 (week_4 VARCHAR, week_3 VARCHAR) | SELECT week_4 FROM table_name_12 WHERE week_3 = "mikaela james" |
Who was the girl on week 1 that was previous to week 3's Ava Hart? | CREATE TABLE table_name_23 (week_1 VARCHAR, week_3 VARCHAR) | SELECT week_1 FROM table_name_23 WHERE week_3 = "ava hart" |
Who was the girl on week 2 that was previous to week 4's Chelsie Loraine? | CREATE TABLE table_name_73 (week_2 VARCHAR, week_4 VARCHAR) | SELECT week_2 FROM table_name_73 WHERE week_4 = "chelsie loraine" |
Who was the girl on week 5 that came after week 3's Mikaela James? | CREATE TABLE table_name_72 (week_5 VARCHAR, week_3 VARCHAR) | SELECT week_5 FROM table_name_72 WHERE week_3 = "mikaela james" |
Who was the girl on week 1 that preceded week 2's Kamila Sulewska? | CREATE TABLE table_name_12 (week_1 VARCHAR, week_2 VARCHAR) | SELECT week_1 FROM table_name_12 WHERE week_2 = "kamila sulewska" |
Who was the girl on week 5 that came after week 3's Shelly Louise? | CREATE TABLE table_name_21 (week_5 VARCHAR, week_3 VARCHAR) | SELECT week_5 FROM table_name_21 WHERE week_3 = "shelly louise" |
What is 1987-88, when Points is "136"? | CREATE TABLE table_name_24 (points VARCHAR) | SELECT 1987 AS _88 FROM table_name_24 WHERE points = 136 |
Name the the highest Draw which has Points of 22 and Goals Conceded smaller than 26? | CREATE TABLE table_name_13 (draw INTEGER, points VARCHAR, goals_conceded VARCHAR) | SELECT MAX(draw) FROM table_name_13 WHERE points = "22" AND goals_conceded < 26 |
Name the highest Played of Goals Scored smaller than 18 and a Lost larger than 10? | CREATE TABLE table_name_23 (played INTEGER, goals_scored VARCHAR, lost VARCHAR) | SELECT MAX(played) FROM table_name_23 WHERE goals_scored < 18 AND lost > 10 |
Name the average Played with a Points of 0*? | CREATE TABLE table_name_72 (played INTEGER, points VARCHAR) | SELECT AVG(played) FROM table_name_72 WHERE points = "0*" |
Count the Draw which has Lost of 0, and a Goals Scored larger than 0? | CREATE TABLE table_name_59 (draw INTEGER, lost VARCHAR, goals_scored VARCHAR) | SELECT SUM(draw) FROM table_name_59 WHERE lost = 0 AND goals_scored > 0 |
Name the Goals Conceded which has a Draw of 0 and a Played larger than 0? | CREATE TABLE table_name_48 (goals_conceded INTEGER, draw VARCHAR, played VARCHAR) | SELECT AVG(goals_conceded) FROM table_name_48 WHERE draw = 0 AND played > 0 |
What is the rank for the Mixed Team nation with a total of less than 13? | CREATE TABLE table_name_74 (rank VARCHAR, total VARCHAR, nation VARCHAR) | SELECT rank FROM table_name_74 WHERE total < 13 AND nation = "mixed team" |
What is the total number of bronze medals for teams with less than 0 silver? | CREATE TABLE table_name_98 (bronze VARCHAR, silver INTEGER) | SELECT COUNT(bronze) FROM table_name_98 WHERE silver < 0 |
What is the average number of bronze medals when the team's silver are more than 1 but the total medals are less than 9? | CREATE TABLE table_name_87 (bronze INTEGER, silver VARCHAR, total VARCHAR) | SELECT AVG(bronze) FROM table_name_87 WHERE silver > 1 AND total < 9 |
How many military or civilians were wounded in the conflict that had an unknown number of civilian and total deaths? | CREATE TABLE table_name_39 (military_and_or_civilian_wounded VARCHAR, civilian_deaths VARCHAR, total_deaths__not_including_foreigners_ VARCHAR) | SELECT military_and_or_civilian_wounded FROM table_name_39 WHERE civilian_deaths = "unknown" AND total_deaths__not_including_foreigners_ = "unknown" |
How many civilians died in the conflict that left 231 members of the military dead? | CREATE TABLE table_name_21 (civilian_deaths VARCHAR, military_deaths VARCHAR) | SELECT civilian_deaths FROM table_name_21 WHERE military_deaths = "231" |
How many civilians died in the conflict that left 178, excluding foreigners, dead? | CREATE TABLE table_name_19 (civilian_deaths VARCHAR, total_deaths__not_including_foreigners_ VARCHAR) | SELECT civilian_deaths FROM table_name_19 WHERE total_deaths__not_including_foreigners_ = "178" |
How many members of the military died in the conflict that had a total of 531 casualties? | CREATE TABLE table_name_38 (military_deaths VARCHAR, total_casualties VARCHAR) | SELECT military_deaths FROM table_name_38 WHERE total_casualties = "531" |
How many civilians died in the conflict that had a total of 1,130 casualties? | CREATE TABLE table_name_95 (civilian_deaths VARCHAR, total_casualties VARCHAR) | SELECT civilian_deaths FROM table_name_95 WHERE total_casualties = "1,130" |
Which team was the opponent on week 15? | CREATE TABLE table_name_7 (opponent VARCHAR, week VARCHAR) | SELECT opponent FROM table_name_7 WHERE week = 15 |
What is the average Total, when Finish is "T47"? | CREATE TABLE table_name_44 (total INTEGER, finish VARCHAR) | SELECT AVG(total) FROM table_name_44 WHERE finish = "t47" |
What is To par, when Total is less than 297, and when Finish is "1"? | CREATE TABLE table_name_37 (to_par VARCHAR, total VARCHAR, finish VARCHAR) | SELECT to_par FROM table_name_37 WHERE total < 297 AND finish = "1" |
What is the Official ITV1 rating for auditions 4? | CREATE TABLE table_name_96 (official_itv1_rating VARCHAR, episode VARCHAR) | SELECT official_itv1_rating FROM table_name_96 WHERE episode = "auditions 4" |
What is the lowest official ITV1 rating with 45.4% share? | CREATE TABLE table_name_32 (official_itv1_rating INTEGER, share VARCHAR) | SELECT MIN(official_itv1_rating) FROM table_name_32 WHERE share = "45.4%" |
How many Goals against have Wins larger than 12, and a Club of ud las palmas, and a Position larger than 5? | CREATE TABLE table_name_48 (goals_against VARCHAR, position VARCHAR, wins VARCHAR, club VARCHAR) | SELECT COUNT(goals_against) FROM table_name_48 WHERE wins > 12 AND club = "ud las palmas" AND position > 5 |
Which Goals against has Points smaller than 26, and Goals for smaller than 38, and a Position larger than 14, and a Goal Difference smaller than -32? | CREATE TABLE table_name_65 (goals_against INTEGER, goal_difference VARCHAR, position VARCHAR, points VARCHAR, goals_for VARCHAR) | SELECT MAX(goals_against) FROM table_name_65 WHERE points < 26 AND goals_for < 38 AND position > 14 AND goal_difference < -32 |
Which Goals against have a Club of cd castellón, and Points smaller than 24? | CREATE TABLE table_name_15 (goals_against INTEGER, club VARCHAR, points VARCHAR) | SELECT AVG(goals_against) FROM table_name_15 WHERE club = "cd castellón" AND points < 24 |
How much Played has Goals against smaller than 34, and Wins smaller than 13? | CREATE TABLE table_name_51 (played INTEGER, goals_against VARCHAR, wins VARCHAR) | SELECT SUM(played) FROM table_name_51 WHERE goals_against < 34 AND wins < 13 |
Which Played has a Position smaller than 4, and Wins larger than 16, and Points of 38, and Goals against larger than 35? | CREATE TABLE table_name_94 (played INTEGER, goals_against VARCHAR, points VARCHAR, position VARCHAR, wins VARCHAR) | SELECT AVG(played) FROM table_name_94 WHERE position < 4 AND wins > 16 AND points = 38 AND goals_against > 35 |
What is the To Par score for the player from France? | CREATE TABLE table_name_99 (to_par VARCHAR, country VARCHAR) | SELECT to_par FROM table_name_99 WHERE country = "france" |
What is the name of the player with an overall score of 70-69-69=208? | CREATE TABLE table_name_41 (player VARCHAR, score VARCHAR) | SELECT player FROM table_name_41 WHERE score = 70 - 69 - 69 = 208 |
What is the To Par score for the player with an overall score of 71-68-69=208? | CREATE TABLE table_name_38 (to_par VARCHAR, score VARCHAR) | SELECT to_par FROM table_name_38 WHERE score = 71 - 68 - 69 = 208 |
What location did Anke Huber win the championship? | CREATE TABLE table_name_68 (location VARCHAR, champion VARCHAR) | SELECT location FROM table_name_68 WHERE champion = "anke huber" |
Who won the runner-up in 1999? | CREATE TABLE table_name_26 (runner_up VARCHAR, year VARCHAR) | SELECT runner_up FROM table_name_26 WHERE year = 1999 |
What was the score when Flavia Pennetta won the championship? | CREATE TABLE table_name_67 (score VARCHAR, champion VARCHAR) | SELECT score FROM table_name_67 WHERE champion = "flavia pennetta" |
How many Matches have an S/Rate smaller than 133.72, and a Team of yorkshire carnegie? | CREATE TABLE table_name_96 (matches VARCHAR, s_rate VARCHAR, team VARCHAR) | SELECT COUNT(matches) FROM table_name_96 WHERE s_rate < 133.72 AND team = "yorkshire carnegie" |
Which Team has Balls smaller than 258, and Inns of 10, and Matches smaller than 12? | CREATE TABLE table_name_27 (team VARCHAR, matches VARCHAR, balls VARCHAR, inns VARCHAR) | SELECT team FROM table_name_27 WHERE balls < 258 AND inns = 10 AND matches < 12 |
How many Matches have Balls smaller than 224, and an Average larger than 38.25, and an S/Rate larger than 139.09? | CREATE TABLE table_name_87 (matches INTEGER, s_rate VARCHAR, balls VARCHAR, average VARCHAR) | SELECT SUM(matches) FROM table_name_87 WHERE balls < 224 AND average > 38.25 AND s_rate > 139.09 |
What was the fastest lap for Grand Prix dutch tt? | CREATE TABLE table_name_56 (fastest_lap VARCHAR, grand_prix VARCHAR) | SELECT fastest_lap FROM table_name_56 WHERE grand_prix = "dutch tt" |
Who won the race circuit of sachsenring? | CREATE TABLE table_name_47 (race_winner VARCHAR, circuit VARCHAR) | SELECT race_winner FROM table_name_47 WHERE circuit = "sachsenring" |
Who won with the fastest lap of daijiro hiura on March 29? | CREATE TABLE table_name_97 (race_winner VARCHAR, fastest_lap VARCHAR, date VARCHAR) | SELECT race_winner FROM table_name_97 WHERE fastest_lap = "daijiro hiura" AND date = "march 29" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.