combined_text
stringlengths 106
1.05k
|
---|
###question:What bowler has a record of 4-15?###answer:SELECT player FROM table_name_97 WHERE bowling = "4-15"###context:CREATE TABLE table_name_97 (player VARCHAR, bowling VARCHAR) |
###question:What ranking is james franklin?###answer:SELECT rank FROM table_name_69 WHERE player = "james franklin"###context:CREATE TABLE table_name_69 (rank VARCHAR, player VARCHAR) |
###question:what venue does tim southee bowl at?###answer:SELECT venue FROM table_name_14 WHERE player = "tim southee"###context:CREATE TABLE table_name_14 (venue VARCHAR, player VARCHAR) |
###question:What was the regular season for 2012?###answer:SELECT regular_season FROM table_name_38 WHERE year = "2012"###context:CREATE TABLE table_name_38 (regular_season VARCHAR, year VARCHAR) |
###question:What is the lowest division in the playoffs and did not qualify for the Open Cup in 2002?###answer:SELECT MIN(division) FROM table_name_91 WHERE playoffs = "did not qualify" AND open_cup = "did not qualify" AND year = "2002"###context:CREATE TABLE table_name_91 (division INTEGER, year VARCHAR, playoffs VARCHAR, open_cup VARCHAR) |
###question:What chassis has more than 0 points?###answer:SELECT chassis FROM table_name_40 WHERE points > 0###context:CREATE TABLE table_name_40 (chassis VARCHAR, points INTEGER) |
###question:How many points were there before 1955?###answer:SELECT COUNT(points) FROM table_name_95 WHERE year < 1955###context:CREATE TABLE table_name_95 (points VARCHAR, year INTEGER) |
###question:What is the lowest amount of points held by the Epperly Indy roadster in 1959?###answer:SELECT MIN(points) FROM table_name_5 WHERE chassis = "epperly indy roadster" AND year = 1959###context:CREATE TABLE table_name_5 (points INTEGER, chassis VARCHAR, year VARCHAR) |
###question:What Chassis has more than 0 points?###answer:SELECT chassis FROM table_name_3 WHERE points > 0###context:CREATE TABLE table_name_3 (chassis VARCHAR, points INTEGER) |
###question:What is the date that 4,286 attended?###answer:SELECT date FROM table_name_15 WHERE attendance = "4,286"###context:CREATE TABLE table_name_15 (date VARCHAR, attendance VARCHAR) |
###question:Where does CF Pachuca play?###answer:SELECT game_site FROM table_name_64 WHERE opponent = "cf pachuca"###context:CREATE TABLE table_name_64 (game_site VARCHAR, opponent VARCHAR) |
###question:What was the attendance of the Cup Quarterfinals game?###answer:SELECT attendance FROM table_name_21 WHERE game_site = "cup quarterfinals"###context:CREATE TABLE table_name_21 (attendance VARCHAR, game_site VARCHAR) |
###question:What shows for 2000 when 2013 shows 3rd?###answer:SELECT 2000 FROM table_name_19 WHERE 2013 = "3rd"###context:CREATE TABLE table_name_19 (Id VARCHAR) |
###question:What is the 2004 when 2013 is 3rd?###answer:SELECT 2004 FROM table_name_17 WHERE 2013 = "3rd"###context:CREATE TABLE table_name_17 (Id VARCHAR) |
###question:What is the 2009 when the 2013 is 4th?###answer:SELECT 2009 FROM table_name_39 WHERE 2013 = "4th"###context:CREATE TABLE table_name_39 (Id VARCHAR) |
###question:What shows for 209 when the 2000 is –, and a Total of 3, and a 2004 of 9th?###answer:SELECT 2009 FROM table_name_4 WHERE 2000 = "–" AND total = 3 AND 2004 = "9th"###context:CREATE TABLE table_name_4 (total VARCHAR) |
###question:What was the winning score in the PGA Championship?###answer:SELECT winning_score FROM table_name_14 WHERE championship = "pga championship"###context:CREATE TABLE table_name_14 (winning_score VARCHAR, championship VARCHAR) |
###question:How many draws with 1 loss?###answer:SELECT SUM(draws) FROM table_name_55 WHERE losses = 1###context:CREATE TABLE table_name_55 (draws INTEGER, losses VARCHAR) |
###question:How many losses does Alex Wilkinson have?###answer:SELECT COUNT(losses) FROM table_name_98 WHERE name = "alex wilkinson"###context:CREATE TABLE table_name_98 (losses VARCHAR, name VARCHAR) |
###question:Name the type for headquarters principal activites.###answer:SELECT type FROM table_name_53 WHERE principal_activities = "headquarters"###context:CREATE TABLE table_name_53 (type VARCHAR, principal_activities VARCHAR) |
###question:Name the incorporated for principal activites of travel agency###answer:SELECT incorporated_in FROM table_name_73 WHERE principal_activities = "travel agency"###context:CREATE TABLE table_name_73 (incorporated_in VARCHAR, principal_activities VARCHAR) |
###question:Name the title with presentation of credentials of april 24, 1884###answer:SELECT title FROM table_name_23 WHERE presentation_of_credentials = "april 24, 1884"###context:CREATE TABLE table_name_23 (title VARCHAR, presentation_of_credentials VARCHAR) |
###question:Name the presentation of credentials for appointed by of grover cleveland and representative of charles w. buck###answer:SELECT presentation_of_credentials FROM table_name_45 WHERE appointed_by = "grover cleveland" AND representative = "charles w. buck"###context:CREATE TABLE table_name_45 (presentation_of_credentials VARCHAR, appointed_by VARCHAR, representative VARCHAR) |
###question:Name the title with presentation of credentials of april 10, 1907###answer:SELECT title FROM table_name_62 WHERE presentation_of_credentials = "april 10, 1907"###context:CREATE TABLE table_name_62 (title VARCHAR, presentation_of_credentials VARCHAR) |
###question:Name the title with termination of mission of february 24, 1828###answer:SELECT title FROM table_name_65 WHERE termination_of_mission = "february 24, 1828"###context:CREATE TABLE table_name_65 (title VARCHAR, termination_of_mission VARCHAR) |
###question:Name the title with termination of mission of april 10, 1939###answer:SELECT title FROM table_name_24 WHERE termination_of_mission = "april 10, 1939"###context:CREATE TABLE table_name_24 (title VARCHAR, termination_of_mission VARCHAR) |
###question:Name the termination of mission for woodrow wilson appointed by and representative of benton mcmillin###answer:SELECT termination_of_mission FROM table_name_18 WHERE appointed_by = "woodrow wilson" AND representative = "benton mcmillin"###context:CREATE TABLE table_name_18 (termination_of_mission VARCHAR, appointed_by VARCHAR, representative VARCHAR) |
###question:What is the highest points gained of the match where fans took 907 and there were more than 44.9 miles one way?###answer:SELECT MAX(points_gained) FROM table_name_57 WHERE fans_took = "907" AND miles_[one_way] > 44.9###context:CREATE TABLE table_name_57 (points_gained INTEGER, fans_took VARCHAR, miles_ VARCHAR, one_way VARCHAR) |
###question:What is the points gained of the match where fans took 403 [sunday]?###answer:SELECT SUM(points_gained) FROM table_name_36 WHERE fans_took = "403 [sunday]"###context:CREATE TABLE table_name_36 (points_gained INTEGER, fans_took VARCHAR) |
###question:Which team had fans took of 288?###answer:SELECT team FROM table_name_71 WHERE fans_took = "288"###context:CREATE TABLE table_name_71 (team VARCHAR, fans_took VARCHAR) |
###question:What years had a ranking of 1?###answer:SELECT years FROM table_name_99 WHERE ranking = 1###context:CREATE TABLE table_name_99 (years VARCHAR, ranking VARCHAR) |
###question:What is the nationality of the person with 50 goals and rank 3?###answer:SELECT nationality FROM table_name_25 WHERE goals = 50 AND ranking = 3###context:CREATE TABLE table_name_25 (nationality VARCHAR, goals VARCHAR, ranking VARCHAR) |
###question:What was the status of joon-hyung park 박준형?###answer:SELECT status FROM table_name_58 WHERE name = "joon-hyung park 박준형"###context:CREATE TABLE table_name_58 (status VARCHAR, name VARCHAR) |
###question:Who had a ballet style with original cast?###answer:SELECT name FROM table_name_80 WHERE style = "ballet" AND status = "original cast"###context:CREATE TABLE table_name_80 (name VARCHAR, style VARCHAR, status VARCHAR) |
###question:When was the first performance with a replacement cast?###answer:SELECT first_performance FROM table_name_80 WHERE status = "replacement cast"###context:CREATE TABLE table_name_80 (first_performance VARCHAR, status VARCHAR) |
###question:What is the latest year for the Tyrrell 018 Chassis that has less than 3 points?###answer:SELECT MAX(year) FROM table_name_43 WHERE chassis = "tyrrell 018" AND points < 3###context:CREATE TABLE table_name_43 (year INTEGER, chassis VARCHAR, points VARCHAR) |
###question:Which entrant has a Honda V6 engine and a Lotus 99t chassis?###answer:SELECT entrant FROM table_name_42 WHERE engine = "honda v6" AND chassis = "lotus 99t"###context:CREATE TABLE table_name_42 (entrant VARCHAR, engine VARCHAR, chassis VARCHAR) |
###question:Name the best when runs of 1088 and matches more than 11###answer:SELECT best FROM table_name_4 WHERE matches > 11 AND runs = 1088###context:CREATE TABLE table_name_4 (best VARCHAR, matches VARCHAR, runs VARCHAR) |
###question:Name the most runs for wickets of 66 and matches less than 13###answer:SELECT MAX(runs) FROM table_name_68 WHERE wickets = 66 AND matches < 13###context:CREATE TABLE table_name_68 (runs INTEGER, wickets VARCHAR, matches VARCHAR) |
###question:What is the score of the game with the San Diego Padres as the opponent and a record of 11-23?###answer:SELECT score FROM table_name_29 WHERE opponent = "san diego padres" AND record = "11-23"###context:CREATE TABLE table_name_29 (score VARCHAR, opponent VARCHAR, record VARCHAR) |
###question:What is the date of the game with a record of 14-31?###answer:SELECT date FROM table_name_16 WHERE record = "14-31"###context:CREATE TABLE table_name_16 (date VARCHAR, record VARCHAR) |
###question:What is the date of the game with a 17-31 record?###answer:SELECT date FROM table_name_90 WHERE record = "17-31"###context:CREATE TABLE table_name_90 (date VARCHAR, record VARCHAR) |
###question:What is the record of the game on 13 May?###answer:SELECT record FROM table_name_70 WHERE date = "13 may"###context:CREATE TABLE table_name_70 (record VARCHAR, date VARCHAR) |
###question:What was average attendance during week 15?###answer:SELECT AVG(attendance) FROM table_name_63 WHERE week = 15###context:CREATE TABLE table_name_63 (attendance INTEGER, week VARCHAR) |
###question:What's the smallest week that had a result of t 17–17?###answer:SELECT MIN(week) FROM table_name_75 WHERE result = "t 17–17"###context:CREATE TABLE table_name_75 (week INTEGER, result VARCHAR) |
###question:Who was the opponent in week 12?###answer:SELECT opponent FROM table_name_69 WHERE week = 12###context:CREATE TABLE table_name_69 (opponent VARCHAR, week VARCHAR) |
###question:What is the current club of the Forward who was born after 1983 and who has a height under 2.12?###answer:SELECT current_club FROM table_name_36 WHERE year_born > 1983 AND height < 2.12 AND position = "forward"###context:CREATE TABLE table_name_36 (current_club VARCHAR, position VARCHAR, year_born VARCHAR, height VARCHAR) |
###question:What is the position of the player who is taller than 2.12?###answer:SELECT position FROM table_name_30 WHERE height > 2.12###context:CREATE TABLE table_name_30 (position VARCHAR, height INTEGER) |
###question:How many no votes did North Dakota have?###answer:SELECT no_vote FROM table_name_48 WHERE state = "north dakota"###context:CREATE TABLE table_name_48 (no_vote VARCHAR, state VARCHAR) |
###question:What was the date for Colorado?###answer:SELECT date FROM table_name_92 WHERE state = "colorado"###context:CREATE TABLE table_name_92 (date VARCHAR, state VARCHAR) |
###question:How many no votes from Alaska in 1998?###answer:SELECT no_vote FROM table_name_31 WHERE date = "1998" AND state = "alaska"###context:CREATE TABLE table_name_31 (no_vote VARCHAR, date VARCHAR, state VARCHAR) |
###question:How many positive votes for Tennessee in 2006?###answer:SELECT yes_vote FROM table_name_73 WHERE date = "2006" AND state = "tennessee"###context:CREATE TABLE table_name_73 (yes_vote VARCHAR, date VARCHAR, state VARCHAR) |
###question:What is the name of the song that is part of the opening theme and has a drama of the revolving doors of vengeance?###answer:SELECT name_of_the_song FROM table_name_82 WHERE kind_of_the_song = "opening theme" AND drama = "revolving doors of vengeance"###context:CREATE TABLE table_name_82 (name_of_the_song VARCHAR, kind_of_the_song VARCHAR, drama VARCHAR) |
###question:How many floors are there at 32 n. main street?###answer:SELECT SUM(floors) FROM table_name_15 WHERE street_address = "32 n. main street"###context:CREATE TABLE table_name_15 (floors INTEGER, street_address VARCHAR) |
###question:When did the rank 9 building got completed?###answer:SELECT completed FROM table_name_64 WHERE rank = "9"###context:CREATE TABLE table_name_64 (completed VARCHAR, rank VARCHAR) |
###question:Which party has 24 governments?###answer:SELECT party FROM table_name_46 WHERE governments = "24"###context:CREATE TABLE table_name_46 (party VARCHAR, governments VARCHAR) |
###question:What governments did the minister with a term start on 24 September 1984 have?###answer:SELECT governments FROM table_name_43 WHERE term_start = "24 september 1984"###context:CREATE TABLE table_name_43 (governments VARCHAR, term_start VARCHAR) |
###question:When is the term end of Shlomo-Yisrael Ben-Meir of the National Religious Party?###answer:SELECT term_end FROM table_name_37 WHERE party = "national religious party" AND minister = "shlomo-yisrael ben-meir"###context:CREATE TABLE table_name_37 (term_end VARCHAR, party VARCHAR, minister VARCHAR) |
###question:Who is the minister with a term end on 10 March 1974?###answer:SELECT minister FROM table_name_71 WHERE term_end = "10 march 1974"###context:CREATE TABLE table_name_71 (minister VARCHAR, term_end VARCHAR) |
###question:Name the points classification for predictor-lotto and stage 1###answer:SELECT points_classification FROM table_name_65 WHERE team_classification = "predictor-lotto" AND stage = "1"###context:CREATE TABLE table_name_65 (points_classification VARCHAR, team_classification VARCHAR, stage VARCHAR) |
###question:Name the points classification for quick step-innergetic with stage 7###answer:SELECT points_classification FROM table_name_66 WHERE team_classification = "quick step-innergetic" AND stage = "7"###context:CREATE TABLE table_name_66 (points_classification VARCHAR, team_classification VARCHAR, stage VARCHAR) |
###question:Name the stgae with winner of robbie mcewen###answer:SELECT stage FROM table_name_22 WHERE winner = "robbie mcewen"###context:CREATE TABLE table_name_22 (stage VARCHAR, winner VARCHAR) |
###question:Name the winner for nick nuyens for general classification and stage of 2###answer:SELECT winner FROM table_name_96 WHERE general_classification = "nick nuyens" AND stage = "2"###context:CREATE TABLE table_name_96 (winner VARCHAR, general_classification VARCHAR, stage VARCHAR) |
###question:Name the team classification for stage of 6###answer:SELECT team_classification FROM table_name_47 WHERE stage = "6"###context:CREATE TABLE table_name_47 (team_classification VARCHAR, stage VARCHAR) |
###question:What is the Davao's power (kW)?###answer:SELECT power__kw_ FROM table_name_44 WHERE location = "davao"###context:CREATE TABLE table_name_44 (power__kw_ VARCHAR, location VARCHAR) |
###question:What is the brand of DXRE?###answer:SELECT branding FROM table_name_35 WHERE callsign = "dxre"###context:CREATE TABLE table_name_35 (branding VARCHAR, callsign VARCHAR) |
###question:What is the power (kW) of Davao?###answer:SELECT power__kw_ FROM table_name_74 WHERE location = "davao"###context:CREATE TABLE table_name_74 (power__kw_ VARCHAR, location VARCHAR) |
###question:What is the callsign of Cagayan de Oro with 5kW?###answer:SELECT callsign FROM table_name_81 WHERE power__kw_ = "5kw" AND location = "cagayan de oro"###context:CREATE TABLE table_name_81 (callsign VARCHAR, power__kw_ VARCHAR, location VARCHAR) |
###question:What is the callsign of the 5kW Sonshine Radio Cotabato?###answer:SELECT callsign FROM table_name_23 WHERE power__kw_ = "5kw" AND branding = "sonshine radio cotabato"###context:CREATE TABLE table_name_23 (callsign VARCHAR, power__kw_ VARCHAR, branding VARCHAR) |
###question:What's the average amount of Runs that has 40 innings, and Not outs larger than 6?###answer:SELECT AVG(runs) FROM table_name_70 WHERE innings = 40 AND not_outs > 6###context:CREATE TABLE table_name_70 (runs INTEGER, innings VARCHAR, not_outs VARCHAR) |
###question:What's the total Innings that has Runs of 1598, and Matches less than 41?###answer:SELECT COUNT(innings) FROM table_name_68 WHERE runs = 1598 AND matches < 41###context:CREATE TABLE table_name_68 (innings VARCHAR, runs VARCHAR, matches VARCHAR) |
###question:What venue held the event in 2008 that has 2:13:10 in the notes?###answer:SELECT venue FROM table_name_12 WHERE year = 2008 AND notes = "2:13:10"###context:CREATE TABLE table_name_12 (venue VARCHAR, year VARCHAR, notes VARCHAR) |
###question:Who discovered the specimen at the Burpee Museum of Natural History?###answer:SELECT discoverer FROM table_name_43 WHERE museum = "burpee museum of natural history"###context:CREATE TABLE table_name_43 (discoverer VARCHAR, museum VARCHAR) |
###question:What is the city of the Museum that houses the specimen discovered by Jane Solem?###answer:SELECT museum AS city FROM table_name_28 WHERE discoverer = "jane solem"###context:CREATE TABLE table_name_28 (museum VARCHAR, discoverer VARCHAR) |
###question:What city has the museum that holds the Sue specimen?###answer:SELECT museum AS city FROM table_name_48 WHERE name = "sue"###context:CREATE TABLE table_name_48 (museum VARCHAR, name VARCHAR) |
###question:With what Name does the Roll of 637 belong?###answer:SELECT name FROM table_name_57 WHERE roll = "637"###context:CREATE TABLE table_name_57 (name VARCHAR, roll VARCHAR) |
###question:Which is the Authority that has a Roll of 70?###answer:SELECT authority FROM table_name_4 WHERE roll = "70"###context:CREATE TABLE table_name_4 (authority VARCHAR, roll VARCHAR) |
###question:The Decile of 6 has which corresponding Years?###answer:SELECT years FROM table_name_91 WHERE decile = "6"###context:CREATE TABLE table_name_91 (years VARCHAR, decile VARCHAR) |
###question:Name the award for candida scott knight###answer:SELECT award FROM table_name_78 WHERE director_s_ = "candida scott knight"###context:CREATE TABLE table_name_78 (award VARCHAR, director_s_ VARCHAR) |
###question:Name the recipient for jamaica and award of £6,947###answer:SELECT recipient FROM table_name_94 WHERE award = "£6,947" AND film = "jamaica"###context:CREATE TABLE table_name_94 (recipient VARCHAR, award VARCHAR, film VARCHAR) |
###question:Name the film for award of £3,740###answer:SELECT film FROM table_name_98 WHERE award = "£3,740"###context:CREATE TABLE table_name_98 (film VARCHAR, award VARCHAR) |
###question:Name the director for maya vision international ltd###answer:SELECT director_s_ FROM table_name_81 WHERE recipient = "maya vision international ltd"###context:CREATE TABLE table_name_81 (director_s_ VARCHAR, recipient VARCHAR) |
###question:Name the film for award of £3,386###answer:SELECT film FROM table_name_66 WHERE award = "£3,386"###context:CREATE TABLE table_name_66 (film VARCHAR, award VARCHAR) |
###question:Name the venue for 2004 and position of 25th###answer:SELECT venue FROM table_name_4 WHERE position = "25th" AND year = 2004###context:CREATE TABLE table_name_4 (venue VARCHAR, position VARCHAR, year VARCHAR) |
###question:Name the venue for 27th position###answer:SELECT venue FROM table_name_1 WHERE position = "27th"###context:CREATE TABLE table_name_1 (venue VARCHAR, position VARCHAR) |
###question:What was the score of the draw in the 2005 FIFA Confederations Cup?###answer:SELECT score FROM table_name_24 WHERE competition = "2005 fifa confederations cup" AND result = "draw"###context:CREATE TABLE table_name_24 (score VARCHAR, competition VARCHAR, result VARCHAR) |
###question:What is the highest Peroutka with 46 others, and less than 15 electors?###answer:SELECT MAX(peroutka) FROM table_name_69 WHERE others = 46 AND electors < 15###context:CREATE TABLE table_name_69 (peroutka INTEGER, others VARCHAR, electors VARCHAR) |
###question:Who came in 3rd place in 1990?###answer:SELECT 3 AS rd_place FROM table_name_20 WHERE year = "1990"###context:CREATE TABLE table_name_20 (year VARCHAR) |
###question:Which class Pos has a Team of jml team panoz?###answer:SELECT class AS pos FROM table_name_71 WHERE team = "jml team panoz"###context:CREATE TABLE table_name_71 (class VARCHAR, team VARCHAR) |
###question:Which Class Pos has a Year larger than 1997, a Team of corvette racing, a Class of gt1, and 327 laps?###answer:SELECT class AS pos FROM table_name_25 WHERE year > 1997 AND team = "corvette racing" AND class = "gt1" AND laps = 327###context:CREATE TABLE table_name_25 (class VARCHAR, laps VARCHAR, year VARCHAR, team VARCHAR) |
###question:What is the final result of the team that has Simara as No.5?###answer:SELECT final FROM table_name_11 WHERE no5 = "simara"###context:CREATE TABLE table_name_11 (final VARCHAR, no5 VARCHAR) |
###question:Which Winning Driver has a Second Driver of jimmy bryan?###answer:SELECT winning_driver FROM table_name_25 WHERE second_driver = "jimmy bryan"###context:CREATE TABLE table_name_25 (winning_driver VARCHAR, second_driver VARCHAR) |
###question:How many average Cars Entered have a Third Driver of manny ayulo?###answer:SELECT AVG(cars_entered) FROM table_name_53 WHERE third_driver = "manny ayulo"###context:CREATE TABLE table_name_53 (cars_entered INTEGER, third_driver VARCHAR) |
###question:What are the largest Cars Entered with a Season of 1958?###answer:SELECT MAX(cars_entered) FROM table_name_69 WHERE season = 1958###context:CREATE TABLE table_name_69 (cars_entered INTEGER, season VARCHAR) |
###question:What is the largest season with a Third Driver of jimmy davies?###answer:SELECT MAX(season) FROM table_name_2 WHERE third_driver = "jimmy davies"###context:CREATE TABLE table_name_2 (season INTEGER, third_driver VARCHAR) |
###question:What are the largest Cars Entered with a Winning Driver of rodger ward, and a Season smaller than 1959?###answer:SELECT MAX(cars_entered) FROM table_name_33 WHERE winning_driver = "rodger ward" AND season < 1959###context:CREATE TABLE table_name_33 (cars_entered INTEGER, winning_driver VARCHAR, season VARCHAR) |
###question:What engine with more than 2 points has Brabham bt58 as Chassis?###answer:SELECT engine FROM table_name_66 WHERE chassis = "brabham bt58" AND points > 2###context:CREATE TABLE table_name_66 (engine VARCHAR, chassis VARCHAR, points VARCHAR) |
###question:How many points did Judd v8 has in 1989?###answer:SELECT COUNT(points) FROM table_name_71 WHERE engine = "judd v8" AND year = 1989###context:CREATE TABLE table_name_71 (points VARCHAR, engine VARCHAR, year VARCHAR) |
###question:How many years has Sasol Jordan Yamaha as an Entrant?###answer:SELECT AVG(year) FROM table_name_79 WHERE entrant = "sasol jordan yamaha"###context:CREATE TABLE table_name_79 (year INTEGER, entrant VARCHAR) |
###question:What was the record for the game that had a loss of Williams (3-1)?###answer:SELECT record FROM table_name_30 WHERE loss = "williams (3-1)"###context:CREATE TABLE table_name_30 (record VARCHAR, loss VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.