combined_text stringlengths 106 1.05k |
|---|
###question:What gender has a local board of albert–eden with a roll of more than 232 and Decile of 5?###answer:SELECT gender FROM table_name_49 WHERE local_board = "albert–eden" AND roll > 232 AND decile = "5"###context:CREATE TABLE table_name_49 (gender VARCHAR, decile VARCHAR, local_board VARCHAR, roll VARCHAR) |
###question:What is the status of the torre reforma building that is over 44 stories in mexico city?###answer:SELECT status FROM table_name_11 WHERE stories > 44 AND city = "mexico city" AND building = "torre reforma"###context:CREATE TABLE table_name_11 (status VARCHAR, building VARCHAR, stories VARCHAR, city VARCHAR) |
###question:How tall is the 52 story building?###answer:SELECT height FROM table_name_82 WHERE stories = 52###context:CREATE TABLE table_name_82 (height VARCHAR, stories VARCHAR) |
###question:How many stories is the torre reforma building?###answer:SELECT COUNT(stories) FROM table_name_99 WHERE building = "torre reforma"###context:CREATE TABLE table_name_99 (stories VARCHAR, building VARCHAR) |
###question:What is the Nationality of Mike Gatting, who played 551 games?###answer:SELECT nationality FROM table_name_7 WHERE games = "551" AND player = "mike gatting"###context:CREATE TABLE table_name_7 (nationality VARCHAR, games VARCHAR, player VARCHAR) |
###question:What is the nationality of the player who played 505 games?###answer:SELECT nationality FROM table_name_37 WHERE games = "505"###context:CREATE TABLE table_name_37 (nationality VARCHAR, games VARCHAR) |
###question:What is Wasim Akram's rank?###answer:SELECT rank FROM table_name_47 WHERE player = "wasim akram"###context:CREATE TABLE table_name_47 (rank VARCHAR, player VARCHAR) |
###question:What is Graham Gooch's nationality?###answer:SELECT nationality FROM table_name_87 WHERE player = "graham gooch"###context:CREATE TABLE table_name_87 (nationality VARCHAR, player VARCHAR) |
###question:What was the highest average attendance in the 2009 season?###answer:SELECT MAX(average_attendance) FROM table_name_94 WHERE season = "2009"###context:CREATE TABLE table_name_94 (average_attendance INTEGER, season VARCHAR) |
###question:What's the total attendance in rink hockey when the average attendance was smaller than 4850?###answer:SELECT total_attendance FROM table_name_80 WHERE average_attendance < 4850 AND sport = "rink hockey"###context:CREATE TABLE table_name_80 (total_attendance VARCHAR, average_attendance VARCHAR, sport VARCHA... |
###question:What's the average attendance of the league with a total attendance of 2268508?###answer:SELECT average_attendance FROM table_name_75 WHERE total_attendance = "2268508"###context:CREATE TABLE table_name_75 (average_attendance VARCHAR, total_attendance VARCHAR) |
###question:Can you tell me the average Points that has a Pts/game larger than 4, and the Nation of england, and the Games smaller than 5?###answer:SELECT AVG(points) FROM table_name_1 WHERE pts_game > 4 AND nation = "england" AND games < 5###context:CREATE TABLE table_name_1 (points INTEGER, games VARCHAR, pts_game VA... |
###question:Can you tell me the lowest Pts/game that has the Games larger than 6?###answer:SELECT MIN(pts_game) FROM table_name_98 WHERE games > 6###context:CREATE TABLE table_name_98 (pts_game INTEGER, games INTEGER) |
###question:Can you tell me the lowest Pts/game that has the Name of philippa tuttiett, and the Points larger then 6?###answer:SELECT MIN(pts_game) FROM table_name_59 WHERE name = "philippa tuttiett" AND points > 6###context:CREATE TABLE table_name_59 (pts_game INTEGER, name VARCHAR, points VARCHAR) |
###question:Can you tell me the lowest Games that has the Pts/game larger than 1.4 and the Points of 20, and the Name of susan day?###answer:SELECT MIN(games) FROM table_name_96 WHERE pts_game > 1.4 AND points = 20 AND name = "susan day"###context:CREATE TABLE table_name_96 (games INTEGER, name VARCHAR, pts_game VARCHA... |
###question:What was the lowest production code value in series #10?###answer:SELECT MIN(production_code) FROM table_name_14 WHERE series__number = 10###context:CREATE TABLE table_name_14 (production_code INTEGER, series__number VARCHAR) |
###question:What is the Absorbtion (in nanometers) of the color Orange?###answer:SELECT absorb__nm_ FROM table_name_40 WHERE color = "orange"###context:CREATE TABLE table_name_40 (absorb__nm_ VARCHAR, color VARCHAR) |
###question:What is the Absorbtion (in nanometers) of the color Violet with an emission of 432 nm?###answer:SELECT absorb__nm_ FROM table_name_59 WHERE color = "violet" AND emit__nm_ = "432"###context:CREATE TABLE table_name_59 (absorb__nm_ VARCHAR, color VARCHAR, emit__nm_ VARCHAR) |
###question:Which Emission (in nanometers) has an absorbtion of 593 nm?###answer:SELECT emit__nm_ FROM table_name_6 WHERE absorb__nm_ = "593"###context:CREATE TABLE table_name_6 (emit__nm_ VARCHAR, absorb__nm_ VARCHAR) |
###question:Which Emission (in nanometers) that has a molar mass of 1078 g/mol?###answer:SELECT emit__nm_ FROM table_name_86 WHERE mass__g_mol_ = "1078"###context:CREATE TABLE table_name_86 (emit__nm_ VARCHAR, mass__g_mol_ VARCHAR) |
###question:Which ε (M -1 cm -1) has a molar mass of 1008 g/mol?###answer:SELECT ε__m__1_cm__1__ FROM table_name_79 WHERE mass__g_mol_ = "1008"###context:CREATE TABLE table_name_79 (ε__m__1_cm__1__ VARCHAR, mass__g_mol_ VARCHAR) |
###question:What was the away team that played against Fitzroy?###answer:SELECT away_team FROM table_name_87 WHERE home_team = "fitzroy"###context:CREATE TABLE table_name_87 (away_team VARCHAR, home_team VARCHAR) |
###question:On what date was the Essendon home match?###answer:SELECT date FROM table_name_66 WHERE home_team = "essendon"###context:CREATE TABLE table_name_66 (date VARCHAR, home_team VARCHAR) |
###question:On what Date did the friendly Competition take place?###answer:SELECT date FROM table_name_49 WHERE competition = "friendly"###context:CREATE TABLE table_name_49 (date VARCHAR, competition VARCHAR) |
###question:What was the Attendance of the Game at Hoosier Dome?###answer:SELECT attendance FROM table_name_92 WHERE game_site = "hoosier dome"###context:CREATE TABLE table_name_92 (attendance VARCHAR, game_site VARCHAR) |
###question:What was the Result of the Game at the Meadowlands on 1991-09-01?###answer:SELECT result FROM table_name_29 WHERE game_site = "the meadowlands" AND date = "1991-09-01"###context:CREATE TABLE table_name_29 (result VARCHAR, game_site VARCHAR, date VARCHAR) |
###question:What was the Attendance in Week 17?###answer:SELECT attendance FROM table_name_70 WHERE week = 17###context:CREATE TABLE table_name_70 (attendance VARCHAR, week VARCHAR) |
###question:Which Opponent was played on 1991-10-13?###answer:SELECT opponent FROM table_name_52 WHERE date = "1991-10-13"###context:CREATE TABLE table_name_52 (opponent VARCHAR, date VARCHAR) |
###question:What is the number for the player that has a k position?###answer:SELECT number FROM table_name_77 WHERE position = "k"###context:CREATE TABLE table_name_77 (number VARCHAR, position VARCHAR) |
###question:What is the venue for the friendly competition and score of 4-0?###answer:SELECT venue FROM table_name_53 WHERE score = "4-0" AND competition = "friendly"###context:CREATE TABLE table_name_53 (venue VARCHAR, score VARCHAR, competition VARCHAR) |
###question:Name the score for 7 may 2000###answer:SELECT score FROM table_name_18 WHERE date = "7 may 2000"###context:CREATE TABLE table_name_18 (score VARCHAR, date VARCHAR) |
###question:Name the date of the uncaf nations cup 2009###answer:SELECT date FROM table_name_91 WHERE competition = "uncaf nations cup 2009"###context:CREATE TABLE table_name_91 (date VARCHAR, competition VARCHAR) |
###question:What date were there more than 19,600 people in attendance?###answer:SELECT date FROM table_name_49 WHERE attendance > 19 OFFSET 600###context:CREATE TABLE table_name_49 (date VARCHAR, attendance INTEGER) |
###question:During st kilda's home game, what was the number of people in the crowd?###answer:SELECT crowd FROM table_name_12 WHERE home_team = "st kilda"###context:CREATE TABLE table_name_12 (crowd VARCHAR, home_team VARCHAR) |
###question:What's the time/retired for constructor source:?###answer:SELECT time_retired FROM table_name_89 WHERE constructor = "source:"###context:CREATE TABLE table_name_89 (time_retired VARCHAR, constructor VARCHAR) |
###question:How many laps does luca badoer have?###answer:SELECT laps FROM table_name_71 WHERE driver = "luca badoer"###context:CREATE TABLE table_name_71 (laps VARCHAR, driver VARCHAR) |
###question:What's the time/retired for a grid of 14?###answer:SELECT time_retired FROM table_name_98 WHERE grid = "14"###context:CREATE TABLE table_name_98 (time_retired VARCHAR, grid VARCHAR) |
###question:How many laps does jean-christophe boullion have with a time/retired of +1 lap?###answer:SELECT laps FROM table_name_67 WHERE time_retired = "+1 lap" AND driver = "jean-christophe boullion"###context:CREATE TABLE table_name_67 (laps VARCHAR, time_retired VARCHAR, driver VARCHAR) |
###question:How many laps does roberto moreno have?###answer:SELECT laps FROM table_name_51 WHERE driver = "roberto moreno"###context:CREATE TABLE table_name_51 (laps VARCHAR, driver VARCHAR) |
###question:What grid has 2 laps?###answer:SELECT grid FROM table_name_93 WHERE laps = "2"###context:CREATE TABLE table_name_93 (grid VARCHAR, laps VARCHAR) |
###question:On what date was a game played at Windy Hill?###answer:SELECT date FROM table_name_6 WHERE venue = "windy hill"###context:CREATE TABLE table_name_6 (date VARCHAR, venue VARCHAR) |
###question:Where does South Melbourne play?###answer:SELECT venue FROM table_name_52 WHERE away_team = "south melbourne"###context:CREATE TABLE table_name_52 (venue VARCHAR, away_team VARCHAR) |
###question:Where did Richmond play?###answer:SELECT venue FROM table_name_10 WHERE away_team = "richmond"###context:CREATE TABLE table_name_10 (venue VARCHAR, away_team VARCHAR) |
###question:Which Team plays at Western Oval?###answer:SELECT home_team FROM table_name_90 WHERE venue = "western oval"###context:CREATE TABLE table_name_90 (home_team VARCHAR, venue VARCHAR) |
###question:What is the average crowd attendance for Collingwood?###answer:SELECT AVG(crowd) FROM table_name_92 WHERE home_team = "collingwood"###context:CREATE TABLE table_name_92 (crowd INTEGER, home_team VARCHAR) |
###question:Name the outcome for alizé cornet janette husárová being opponent in final###answer:SELECT outcome FROM table_name_97 WHERE opponent_in_final = "alizé cornet janette husárová"###context:CREATE TABLE table_name_97 (outcome VARCHAR, opponent_in_final VARCHAR) |
###question:Name the outcome that had an opponent in final of nina bratchikova kathrin wörle###answer:SELECT outcome FROM table_name_56 WHERE opponent_in_final = "nina bratchikova kathrin wörle"###context:CREATE TABLE table_name_56 (outcome VARCHAR, opponent_in_final VARCHAR) |
###question:Which partner was on 14 april 2013?###answer:SELECT partner FROM table_name_94 WHERE date = "14 april 2013"###context:CREATE TABLE table_name_94 (partner VARCHAR, date VARCHAR) |
###question:When laps are less than 80 and Bruce mclaren is the driver, what is the grid?###answer:SELECT grid FROM table_name_58 WHERE laps < 80 AND driver = "bruce mclaren"###context:CREATE TABLE table_name_58 (grid VARCHAR, laps VARCHAR, driver VARCHAR) |
###question:What driver has a grid greater than 19?###answer:SELECT driver FROM table_name_27 WHERE grid > 19###context:CREATE TABLE table_name_27 (driver VARCHAR, grid INTEGER) |
###question:When the driver richard attwood has a constructor of brm, what is the number of laps?###answer:SELECT laps FROM table_name_87 WHERE constructor = "brm" AND driver = "richard attwood"###context:CREATE TABLE table_name_87 (laps VARCHAR, constructor VARCHAR, driver VARCHAR) |
###question:What is the average grid for the competitiors who had laps smaller than 3?###answer:SELECT AVG(grid) FROM table_name_55 WHERE laps < 3###context:CREATE TABLE table_name_55 (grid INTEGER, laps INTEGER) |
###question:What is the average grid for competitors who had more than 22 laps and time/retired of +17.276?###answer:SELECT AVG(grid) FROM table_name_79 WHERE time_retired = "+17.276" AND laps > 22###context:CREATE TABLE table_name_79 (grid INTEGER, time_retired VARCHAR, laps VARCHAR) |
###question:What was the average amount of laps for competitors with a grid that was more than 11 and a Time/Retired of +28.108?###answer:SELECT AVG(laps) FROM table_name_27 WHERE time_retired = "+28.108" AND grid > 11###context:CREATE TABLE table_name_27 (laps INTEGER, time_retired VARCHAR, grid VARCHAR) |
###question:What was the away team that played at Princes Park?###answer:SELECT away_team FROM table_name_17 WHERE venue = "princes park"###context:CREATE TABLE table_name_17 (away_team VARCHAR, venue VARCHAR) |
###question:What was the away team that played at Princes Park?###answer:SELECT away_team FROM table_name_97 WHERE venue = "princes park"###context:CREATE TABLE table_name_97 (away_team VARCHAR, venue VARCHAR) |
###question:In what venue was the hosted away team Essendon?###answer:SELECT venue FROM table_name_59 WHERE away_team = "essendon"###context:CREATE TABLE table_name_59 (venue VARCHAR, away_team VARCHAR) |
###question:Who was the home team at MCG?###answer:SELECT home_team FROM table_name_86 WHERE venue = "mcg"###context:CREATE TABLE table_name_86 (home_team VARCHAR, venue VARCHAR) |
###question:I want to know the final score for december 27###answer:SELECT final_score FROM table_name_74 WHERE date = "december 27"###context:CREATE TABLE table_name_74 (final_score VARCHAR, date VARCHAR) |
###question:Tell me the final score for january 9 for cincinnati bengals###answer:SELECT final_score FROM table_name_96 WHERE date = "january 9" AND host_team = "cincinnati bengals"###context:CREATE TABLE table_name_96 (final_score VARCHAR, date VARCHAR, host_team VARCHAR) |
###question:Tell me the host team for giants stadium and visiting of cincinnati bengals###answer:SELECT host_team FROM table_name_57 WHERE stadium = "giants stadium" AND visiting_team = "cincinnati bengals"###context:CREATE TABLE table_name_57 (host_team VARCHAR, stadium VARCHAR, visiting_team VARCHAR) |
###question:Tell me the date for pittsburgh steelers###answer:SELECT date FROM table_name_16 WHERE visiting_team = "pittsburgh steelers"###context:CREATE TABLE table_name_16 (date VARCHAR, visiting_team VARCHAR) |
###question:Tell me the visiting team for october 4###answer:SELECT visiting_team FROM table_name_59 WHERE date = "october 4"###context:CREATE TABLE table_name_59 (visiting_team VARCHAR, date VARCHAR) |
###question:I want to know the stadium for tennessee titans visiting###answer:SELECT stadium FROM table_name_32 WHERE visiting_team = "tennessee titans"###context:CREATE TABLE table_name_32 (stadium VARCHAR, visiting_team VARCHAR) |
###question:When the driver is Juan Manuel Fangio and laps is less than 39, what is the highest grid?###answer:SELECT MAX(grid) FROM table_name_44 WHERE laps < 39 AND driver = "juan manuel fangio"###context:CREATE TABLE table_name_44 (grid INTEGER, laps VARCHAR, driver VARCHAR) |
###question:When grid is less than 7, laps are greater than 17, and time/retired is + 1:35.6, who is the constructor?###answer:SELECT constructor FROM table_name_84 WHERE laps > 17 AND grid < 7 AND time_retired = "+ 1:35.6"###context:CREATE TABLE table_name_84 (constructor VARCHAR, time_retired VARCHAR, laps VARCHAR, g... |
###question:What was the smallest grid for Prince bira?###answer:SELECT MIN(grid) FROM table_name_29 WHERE driver = "prince bira"###context:CREATE TABLE table_name_29 (grid INTEGER, driver VARCHAR) |
###question:How many losses did the team with 22 goals for andmore than 8 games played have?###answer:SELECT COUNT(losses) FROM table_name_52 WHERE goals_for = 22 AND games_played > 8###context:CREATE TABLE table_name_52 (losses VARCHAR, goals_for VARCHAR, games_played VARCHAR) |
###question:For teams with fewer than 5 wins, goals against over 37, and fewer than 8 games played, what is the average number of ties?###answer:SELECT AVG(ties) FROM table_name_21 WHERE wins < 5 AND goals_against > 37 AND games_played < 8###context:CREATE TABLE table_name_21 (ties INTEGER, games_played VARCHAR, wins V... |
###question:For teams with 7 wins, what is the number of goals against?###answer:SELECT goals_against FROM table_name_36 WHERE wins = 7###context:CREATE TABLE table_name_36 (goals_against VARCHAR, wins VARCHAR) |
###question:For teams with more than 0 ties and goals against of 37, how many wins were tallied?###answer:SELECT MAX(wins) FROM table_name_73 WHERE goals_against = 37 AND ties > 0###context:CREATE TABLE table_name_73 (wins INTEGER, goals_against VARCHAR, ties VARCHAR) |
###question:What year was the the youngest nominee a winner?###answer:SELECT year FROM table_name_35 WHERE superlative = "youngest nominee"###context:CREATE TABLE table_name_35 (year VARCHAR, superlative VARCHAR) |
###question:What actor won in 1978?###answer:SELECT actor FROM table_name_22 WHERE year = "1978"###context:CREATE TABLE table_name_22 (actor VARCHAR, year VARCHAR) |
###question:What are the notes in 1981?###answer:SELECT notes FROM table_name_99 WHERE year = "1981"###context:CREATE TABLE table_name_99 (notes VARCHAR, year VARCHAR) |
###question:In what year had the oldest winner?###answer:SELECT year FROM table_name_13 WHERE superlative = "oldest winner"###context:CREATE TABLE table_name_13 (year VARCHAR, superlative VARCHAR) |
###question:What year did actor Richard Farnsworth get nominated for an award?###answer:SELECT year FROM table_name_73 WHERE actor = "richard farnsworth"###context:CREATE TABLE table_name_73 (year VARCHAR, actor VARCHAR) |
###question:Tell me the time/retired for Laps of 42 and Grids of 4###answer:SELECT time_retired FROM table_name_74 WHERE laps = 42 AND grid = 4###context:CREATE TABLE table_name_74 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR) |
###question:I want the driver that has Laps of 10###answer:SELECT driver FROM table_name_59 WHERE laps = 10###context:CREATE TABLE table_name_59 (driver VARCHAR, laps VARCHAR) |
###question:What is the position of Perpignan?###answer:SELECT position FROM table_name_56 WHERE club_province = "perpignan"###context:CREATE TABLE table_name_56 (position VARCHAR, club_province VARCHAR) |
###question:Which player has a cap larger than 12 and Clubs of Toulouse?###answer:SELECT player FROM table_name_74 WHERE caps > 12 AND club_province = "toulouse"###context:CREATE TABLE table_name_74 (player VARCHAR, caps VARCHAR, club_province VARCHAR) |
###question:What is the birthday of caps of 32?###answer:SELECT date_of_birth__age_ FROM table_name_85 WHERE caps = 32###context:CREATE TABLE table_name_85 (date_of_birth__age_ VARCHAR, caps VARCHAR) |
###question:What is the result when the score is 0-2?###answer:SELECT result FROM table_name_20 WHERE score = "0-2"###context:CREATE TABLE table_name_20 (result VARCHAR, score VARCHAR) |
###question:How many goals when the score is 3-0 in the euro 2012 q?###answer:SELECT COUNT(goal) FROM table_name_61 WHERE competition = "euro 2012 q" AND score = "3-0"###context:CREATE TABLE table_name_61 (goal VARCHAR, competition VARCHAR, score VARCHAR) |
###question:I want the driver for grid of 9###answer:SELECT driver FROM table_name_59 WHERE grid = 9###context:CREATE TABLE table_name_59 (driver VARCHAR, grid VARCHAR) |
###question:Which school has a quarterback?###answer:SELECT school FROM table_name_94 WHERE position = "quarterback"###context:CREATE TABLE table_name_94 (school VARCHAR, position VARCHAR) |
###question:In which round is pick number 242?###answer:SELECT COUNT(round) FROM table_name_92 WHERE pick = "242"###context:CREATE TABLE table_name_92 (round VARCHAR, pick VARCHAR) |
###question:Which round was Tom Morris picked in?###answer:SELECT COUNT(round) FROM table_name_16 WHERE player = "tom morris"###context:CREATE TABLE table_name_16 (round VARCHAR, player VARCHAR) |
###question:What pick did Clemson choose?###answer:SELECT pick FROM table_name_38 WHERE school = "clemson"###context:CREATE TABLE table_name_38 (pick VARCHAR, school VARCHAR) |
###question:When Tujunga is moderate, what is La Crescenta-Montrose?###answer:SELECT la_crescenta__montrose FROM table_name_71 WHERE tujunga = "moderate"###context:CREATE TABLE table_name_71 (la_crescenta__montrose VARCHAR, tujunga VARCHAR) |
###question:What is the percentage of La Canada Flintridge when Tujunga is 7%?###answer:SELECT la_cañada_flintridge FROM table_name_58 WHERE tujunga = "7%"###context:CREATE TABLE table_name_58 (la_cañada_flintridge VARCHAR, tujunga VARCHAR) |
###question:When Pasadena is at 10%, what is La Crescenta-Montrose?###answer:SELECT la_crescenta__montrose FROM table_name_25 WHERE pasadena = "10%"###context:CREATE TABLE table_name_25 (la_crescenta__montrose VARCHAR, pasadena VARCHAR) |
###question:When La Crescenta-Montrose has 66%, what is Tujunga?###answer:SELECT tujunga FROM table_name_85 WHERE la_crescenta__montrose = "66%"###context:CREATE TABLE table_name_85 (tujunga VARCHAR, la_crescenta__montrose VARCHAR) |
###question:What is the figure for Tujunga when Pasadena is 134,941?###answer:SELECT tujunga FROM table_name_39 WHERE pasadena = "134,941"###context:CREATE TABLE table_name_39 (tujunga VARCHAR, pasadena VARCHAR) |
###question:What is the figure for La Canada Flintridge when Pasadena is 34?###answer:SELECT la_cañada_flintridge FROM table_name_65 WHERE pasadena = "34"###context:CREATE TABLE table_name_65 (la_cañada_flintridge VARCHAR, pasadena VARCHAR) |
###question:Who was firest elected in 2002 in a district larger than 41?###answer:SELECT member_senator FROM table_name_4 WHERE first_elected = 2002 AND district > 41###context:CREATE TABLE table_name_4 (member_senator VARCHAR, first_elected VARCHAR, district VARCHAR) |
###question:What district for ulysses currie?###answer:SELECT district FROM table_name_26 WHERE member_senator = "ulysses currie"###context:CREATE TABLE table_name_26 (district VARCHAR, member_senator VARCHAR) |
###question:Where did Geelong play as the away team?###answer:SELECT venue FROM table_name_75 WHERE away_team = "geelong"###context:CREATE TABLE table_name_75 (venue VARCHAR, away_team VARCHAR) |
###question:What was Hawthorn's score as the home team?###answer:SELECT home_team AS score FROM table_name_94 WHERE home_team = "hawthorn"###context:CREATE TABLE table_name_94 (home_team VARCHAR) |
###question:Who was South Melbourne's away opponents?###answer:SELECT away_team FROM table_name_18 WHERE home_team = "south melbourne"###context:CREATE TABLE table_name_18 (away_team VARCHAR, home_team VARCHAR) |
###question:In which year is the highest for runner-up Steve Stricker?###answer:SELECT MAX(year) FROM table_name_58 WHERE runner_s__up = "steve stricker"###context:CREATE TABLE table_name_58 (year INTEGER, runner_s__up VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.