combined_text
stringlengths 106
1.05k
|
---|
###question:What school location had an enrollment of 12400?###answer:SELECT location FROM table_16432543_3 WHERE enrollment = 12400###context:CREATE TABLE table_16432543_3 (location VARCHAR, enrollment VARCHAR) |
###question:How many teams were established at University of Maryland?###answer:SELECT COUNT(established) FROM table_16432543_3 WHERE institution = "University of Maryland"###context:CREATE TABLE table_16432543_3 (established VARCHAR, institution VARCHAR) |
###question:what is the enrollment for the Cavaliers?###answer:SELECT MAX(enrollment) FROM table_16432543_3 WHERE nickname = "Cavaliers"###context:CREATE TABLE table_16432543_3 (enrollment INTEGER, nickname VARCHAR) |
###question:What is the smallest number of enrolled students?###answer:SELECT MIN(enrollment) FROM table_16432543_3###context:CREATE TABLE table_16432543_3 (enrollment INTEGER) |
###question:What is the debut album for the artist with the winning song kemenangan hati?###answer:SELECT debut_album FROM table_1646960_3 WHERE winning_song = "Kemenangan Hati"###context:CREATE TABLE table_1646960_3 (debut_album VARCHAR, winning_song VARCHAR) |
###question:How many winners had a debut album titled "mike"?###answer:SELECT winner FROM table_1646960_3 WHERE debut_album = "Mike"###context:CREATE TABLE table_1646960_3 (winner VARCHAR, debut_album VARCHAR) |
###question:What is the winning song for the artist with a debut album "the winner"?###answer:SELECT winning_song FROM table_1646960_3 WHERE debut_album = "The winner"###context:CREATE TABLE table_1646960_3 (winning_song VARCHAR, debut_album VARCHAR) |
###question:What is the winning song for the artist with a debut album "mike"?###answer:SELECT winning_song FROM table_1646960_3 WHERE debut_album = "Mike"###context:CREATE TABLE table_1646960_3 (winning_song VARCHAR, debut_album VARCHAR) |
###question:How many debut albums did mike mohede have?###answer:SELECT COUNT(debut_album) FROM table_1646960_3 WHERE winner = "Mike Mohede"###context:CREATE TABLE table_1646960_3 (debut_album VARCHAR, winner VARCHAR) |
###question:What is the minimum of 25 to 29?###answer:SELECT MIN(25 AS _to_29) FROM table_16457934_5###context:CREATE TABLE table_16457934_5 (Id VARCHAR) |
###question:What is the minimum if 40 to 44?###answer:SELECT MIN(40 AS _to_44) FROM table_16457934_5###context:CREATE TABLE table_16457934_5 (Id VARCHAR) |
###question:What vfl club(s) did players who played 23 cfl games play for?###answer:SELECT vfl_club_s_ FROM table_16527640_2 WHERE vfl_games = 23###context:CREATE TABLE table_16527640_2 (vfl_club_s_ VARCHAR, vfl_games VARCHAR) |
###question:What locations did sid o'neill play football?###answer:SELECT location FROM table_16527640_2 WHERE player = "Sid O'Neill"###context:CREATE TABLE table_16527640_2 (location VARCHAR, player VARCHAR) |
###question:What vfl club(s) for players ranked sergeant, 8th brigade australian field artillery at time of death?###answer:SELECT vfl_club_s_ FROM table_16527640_2 WHERE rank_held_at_time_of_death = "Sergeant, 8th Brigade Australian Field Artillery"###context:CREATE TABLE table_16527640_2 (vfl_club_s_ VARCHAR, rank_held_at_time_of_death VARCHAR) |
###question:How many players named paddy rowan?###answer:SELECT COUNT(rank_held_at_time_of_death) FROM table_16527640_2 WHERE player = "Paddy Rowan"###context:CREATE TABLE table_16527640_2 (rank_held_at_time_of_death VARCHAR, player VARCHAR) |
###question:How many numbers were recorde under 50s when there was 2 matches?###answer:SELECT COUNT(50 AS s) FROM table_16570286_2 WHERE matches = 2###context:CREATE TABLE table_16570286_2 (matches VARCHAR) |
###question:What was the score when Donald Bradman in 9 innings?###answer:SELECT highest_score FROM table_16570286_2 WHERE innings = 9 AND player = "Donald Bradman"###context:CREATE TABLE table_16570286_2 (highest_score VARCHAR, innings VARCHAR, player VARCHAR) |
###question:What is the highest number of matches?###answer:SELECT MAX(matches) FROM table_16570286_2###context:CREATE TABLE table_16570286_2 (matches INTEGER) |
###question:How many numbers were recorded under matches with Arthur Morris?###answer:SELECT COUNT(matches) FROM table_16570286_2 WHERE player = "Arthur Morris"###context:CREATE TABLE table_16570286_2 (matches VARCHAR, player VARCHAR) |
###question:How many teams were there with a high score of 143?###answer:SELECT COUNT(team) FROM table_16570286_2 WHERE highest_score = "143"###context:CREATE TABLE table_16570286_2 (team VARCHAR, highest_score VARCHAR) |
###question:How many titles does Episode 2 have###answer:SELECT COUNT(title) FROM table_165732_2 WHERE episode__number = 2###context:CREATE TABLE table_165732_2 (title VARCHAR, episode__number VARCHAR) |
###question:What is the title of Episode #2###answer:SELECT title FROM table_165732_2 WHERE episode__number = 2###context:CREATE TABLE table_165732_2 (title VARCHAR, episode__number VARCHAR) |
###question:How many directors did Episode #3 have###answer:SELECT COUNT(directed_by) FROM table_165732_2 WHERE episode__number = 3###context:CREATE TABLE table_165732_2 (directed_by VARCHAR, episode__number VARCHAR) |
###question:What position is the player drafted with pick 34?###answer:SELECT position FROM table_16575609_5 WHERE pick__number = 34###context:CREATE TABLE table_16575609_5 (position VARCHAR, pick__number VARCHAR) |
###question:How many colleges did the player drafted at 36 attend?###answer:SELECT COUNT(college) FROM table_16575609_5 WHERE pick__number = 36###context:CREATE TABLE table_16575609_5 (college VARCHAR, pick__number VARCHAR) |
###question:How many colleges did Jon Gott attend?###answer:SELECT COUNT(college) FROM table_16575609_5 WHERE player = "Jon Gott"###context:CREATE TABLE table_16575609_5 (college VARCHAR, player VARCHAR) |
###question:Where did Dante Luciani attend college?###answer:SELECT college FROM table_16575609_5 WHERE player = "Dante Luciani"###context:CREATE TABLE table_16575609_5 (college VARCHAR, player VARCHAR) |
###question:What teak was Brady Browne drafted onto?###answer:SELECT cfl_team FROM table_16575609_5 WHERE player = "Brady Browne"###context:CREATE TABLE table_16575609_5 (cfl_team VARCHAR, player VARCHAR) |
###question:Who was the writer of the episode number in series 4?###answer:SELECT written_by FROM table_16581695_2 WHERE no_in_series = "4"###context:CREATE TABLE table_16581695_2 (written_by VARCHAR, no_in_series VARCHAR) |
###question:What is the original air date for the episode written by Bob Goodman?###answer:SELECT original_airdate FROM table_16581695_2 WHERE written_by = "Bob Goodman"###context:CREATE TABLE table_16581695_2 (original_airdate VARCHAR, written_by VARCHAR) |
###question:Name the number air date for 14.20 us viewers###answer:SELECT COUNT(original_air_date) FROM table_16617011_1 WHERE us_viewers__millions_ = "14.20"###context:CREATE TABLE table_16617011_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR) |
###question:Name the directed by for 15.15 viewers###answer:SELECT directed_by FROM table_16617011_1 WHERE us_viewers__millions_ = "15.15"###context:CREATE TABLE table_16617011_1 (directed_by VARCHAR, us_viewers__millions_ VARCHAR) |
###question:Name the number of giants points for opponents being 31###answer:SELECT COUNT(giants_points) FROM table_16661199_2 WHERE opponents = 31###context:CREATE TABLE table_16661199_2 (giants_points VARCHAR, opponents VARCHAR) |
###question:Name the most attendance for giants points of 10###answer:SELECT MAX(attendance) FROM table_16661199_2 WHERE giants_points = 10###context:CREATE TABLE table_16661199_2 (attendance INTEGER, giants_points VARCHAR) |
###question:What is the distance for jockey Kent Desormeaux on 6/7/08?###answer:SELECT distance FROM table_16689920_1 WHERE jockey = "Kent Desormeaux" AND date = "6/7/08"###context:CREATE TABLE table_16689920_1 (distance VARCHAR, jockey VARCHAR, date VARCHAR) |
###question:At 1:48.16 what was the number of track time?###answer:SELECT COUNT(track) FROM table_16689920_1 WHERE time = "1:48.16"###context:CREATE TABLE table_16689920_1 (track VARCHAR, time VARCHAR) |
###question:With a date of 8/3/08, what was the length of the victory margin?###answer:SELECT COUNT(victory_margin__in_lengths_) FROM table_16689920_1 WHERE date = "8/3/08"###context:CREATE TABLE table_16689920_1 (victory_margin__in_lengths_ VARCHAR, date VARCHAR) |
###question:On what date did the opponents win with 17 points? ###answer:SELECT date FROM table_16678052_2 WHERE opponents = 17 AND result = "Win"###context:CREATE TABLE table_16678052_2 (date VARCHAR, opponents VARCHAR, result VARCHAR) |
###question:What record was reached when the Eagles played the Phoenix Cardinals? ###answer:SELECT record FROM table_16678052_2 WHERE opponent = "Phoenix Cardinals"###context:CREATE TABLE table_16678052_2 (record VARCHAR, opponent VARCHAR) |
###question:How many times in 1984 did the Falcons play the Los Angeles Rams?###answer:SELECT COUNT(opponents) FROM table_16710742_3 WHERE opponent = "Los Angeles Rams"###context:CREATE TABLE table_16710742_3 (opponents VARCHAR, opponent VARCHAR) |
###question:In 1984, Did the Falcons have a win or loss against the New Orleans Saints?###answer:SELECT result FROM table_16710742_3 WHERE opponent = "New Orleans Saints"###context:CREATE TABLE table_16710742_3 (result VARCHAR, opponent VARCHAR) |
###question:Did the Falcons have a win or loss in the game when their record was 3-7?###answer:SELECT result FROM table_16710742_3 WHERE record = "3-7"###context:CREATE TABLE table_16710742_3 (result VARCHAR, record VARCHAR) |
###question:what is the attendance where the game site is kingdome?###answer:SELECT MIN(attendance) FROM table_16729076_1 WHERE game_site = "Kingdome"###context:CREATE TABLE table_16729076_1 (attendance INTEGER, game_site VARCHAR) |
###question:what date is the opponent is chicago bears?###answer:SELECT date FROM table_16729076_1 WHERE opponent = "Chicago Bears"###context:CREATE TABLE table_16729076_1 (date VARCHAR, opponent VARCHAR) |
###question:What team has draft picks from Mississippi?###answer:SELECT nfl_team FROM table_16729063_1 WHERE college = "Mississippi"###context:CREATE TABLE table_16729063_1 (nfl_team VARCHAR, college VARCHAR) |
###question:How many positions drafted players from Washington?###answer:SELECT COUNT(position) FROM table_16729063_1 WHERE college = "Washington"###context:CREATE TABLE table_16729063_1 (position VARCHAR, college VARCHAR) |
###question:How many draft picks are there at the Defensive End position?###answer:SELECT COUNT(pick__number) FROM table_16729063_1 WHERE position = "Defensive End"###context:CREATE TABLE table_16729063_1 (pick__number VARCHAR, position VARCHAR) |
###question:How many draft picks are there at the linebacker position?###answer:SELECT COUNT(pick__number) FROM table_16729063_1 WHERE position = "Linebacker"###context:CREATE TABLE table_16729063_1 (pick__number VARCHAR, position VARCHAR) |
###question:What draft pick was Chris Brewer?###answer:SELECT MIN(pick__number) FROM table_16729063_1 WHERE player = "Chris Brewer"###context:CREATE TABLE table_16729063_1 (pick__number INTEGER, player VARCHAR) |
###question:How many losses did the Michigan State Spartans have?###answer:SELECT MAX(loss) FROM table_1672976_2 WHERE institution = "Michigan State Spartans"###context:CREATE TABLE table_1672976_2 (loss INTEGER, institution VARCHAR) |
###question:How many wins did the Northwestern Wildcats?###answer:SELECT MAX(wins) FROM table_1672976_2 WHERE institution = "Northwestern Wildcats"###context:CREATE TABLE table_1672976_2 (wins INTEGER, institution VARCHAR) |
###question:What institution had 6 wins and a current streak of won 2?###answer:SELECT institution FROM table_1672976_2 WHERE wins = 6 AND current_streak = "Won 2"###context:CREATE TABLE table_1672976_2 (institution VARCHAR, wins VARCHAR, current_streak VARCHAR) |
###question:Who are all the opponents of Slovakia?###answer:SELECT opponents FROM table_16741821_9 WHERE against = "Slovakia"###context:CREATE TABLE table_16741821_9 (opponents VARCHAR, against VARCHAR) |
###question:What is the name of the round against the opponents jesse huta galung peter wessels?###answer:SELECT round FROM table_16741821_9 WHERE opponents = "Jesse Huta Galung Peter Wessels"###context:CREATE TABLE table_16741821_9 (round VARCHAR, opponents VARCHAR) |
###question:Are there SPI on the number 7 cylinder?###answer:SELECT spi FROM table_16731248_1 WHERE number_on_cyl = "7"###context:CREATE TABLE table_16731248_1 (spi VARCHAR, number_on_cyl VARCHAR) |
###question:What is the minimum number of bypass ports listed?###answer:SELECT MIN(bypass_ports) FROM table_16731248_1###context:CREATE TABLE table_16731248_1 (bypass_ports INTEGER) |
###question:Is there a tapered grind on the Surestart engine?###answer:SELECT tapered_grind FROM table_16731248_1 WHERE engine = "SureStart"###context:CREATE TABLE table_16731248_1 (tapered_grind VARCHAR, engine VARCHAR) |
###question:How many bypass boosters are there on the engine with slit exhaust ports and SPI is yes?###answer:SELECT bypass_boosters FROM table_16731248_1 WHERE spi = "Yes" AND exhaust_ports = "Slit"###context:CREATE TABLE table_16731248_1 (bypass_boosters VARCHAR, spi VARCHAR, exhaust_ports VARCHAR) |
###question:How many times did Saxby Chambliss have a lead margin of 21?###answer:SELECT COUNT(republican) AS :_saxby_chambliss FROM table_16751596_16 WHERE lead_margin = 21###context:CREATE TABLE table_16751596_16 (republican VARCHAR, lead_margin VARCHAR) |
###question:Name the least tries for when w is 4###answer:SELECT MIN(tries_for) FROM table_16770037_4 WHERE w = 4###context:CREATE TABLE table_16770037_4 (tries_for INTEGER, w VARCHAR) |
###question:What is the total points when the point difference is +119?###answer:SELECT points FROM table_1676073_13 WHERE points_difference = "+119"###context:CREATE TABLE table_1676073_13 (points VARCHAR, points_difference VARCHAR) |
###question:What is the points for when the total points is 6?###answer:SELECT points_for FROM table_1676073_13 WHERE points = "6"###context:CREATE TABLE table_1676073_13 (points_for VARCHAR, points VARCHAR) |
###question:What club has 693 points for?###answer:SELECT club FROM table_1676073_13 WHERE points_for = "693"###context:CREATE TABLE table_1676073_13 (club VARCHAR, points_for VARCHAR) |
###question:How many wins does the club with 565 points for have?###answer:SELECT won FROM table_1676073_13 WHERE points_for = "565"###context:CREATE TABLE table_1676073_13 (won VARCHAR, points_for VARCHAR) |
###question:How many losses does Cross Keys RFC have?###answer:SELECT COUNT(lost) FROM table_1676073_13 WHERE club = "Cross Keys RFC"###context:CREATE TABLE table_1676073_13 (lost VARCHAR, club VARCHAR) |
###question:How many losses does the club with 539 points for have?###answer:SELECT lost FROM table_1676073_13 WHERE points_for = "539"###context:CREATE TABLE table_1676073_13 (lost VARCHAR, points_for VARCHAR) |
###question:How many hectars of land is in Kaxholmen?###answer:SELECT land_area__hectares_ FROM table_16796625_1 WHERE urban_area__locality_ = "Kaxholmen"###context:CREATE TABLE table_16796625_1 (land_area__hectares_ VARCHAR, urban_area__locality_ VARCHAR) |
###question:How many codes have a population of 598 in Vellinge Municipality?###answer:SELECT COUNT(code) FROM table_16796625_1 WHERE municipality = "Vellinge municipality" AND population = 598###context:CREATE TABLE table_16796625_1 (code VARCHAR, municipality VARCHAR, population VARCHAR) |
###question:Which urban area has the code 4870?###answer:SELECT urban_area__locality_ FROM table_16796625_1 WHERE code = 4870###context:CREATE TABLE table_16796625_1 (urban_area__locality_ VARCHAR, code VARCHAR) |
###question:How many people live in an area of 30.94 hectares?###answer:SELECT COUNT(population) FROM table_16796625_1 WHERE land_area__hectares_ = "30.94"###context:CREATE TABLE table_16796625_1 (population VARCHAR, land_area__hectares_ VARCHAR) |
###question:How many hectares of land area is Landsbro?###answer:SELECT land_area__hectares_ FROM table_16796625_1 WHERE urban_area__locality_ = "Landsbro"###context:CREATE TABLE table_16796625_1 (land_area__hectares_ VARCHAR, urban_area__locality_ VARCHAR) |
###question:Name the total with one hand clean and jerk is 87.5 and snatch is 87.5###answer:SELECT total FROM table_16779068_5 WHERE one_hand_clean_ & _jerk = "87.5" AND snatch = "87.5"###context:CREATE TABLE table_16779068_5 (total VARCHAR, snatch VARCHAR, one_hand_clean_ VARCHAR, _jerk VARCHAR) |
###question:Name the snatch when body weight is 73.7###answer:SELECT snatch FROM table_16779068_5 WHERE body_weight = "737"###context:CREATE TABLE table_16779068_5 (snatch VARCHAR, body_weight VARCHAR) |
###question:Name the 3 where weightlifter is m. van der goten ( bel )###answer:SELECT 3 FROM table_16779068_5 WHERE weightlifter = "M. Van der Goten ( BEL )"###context:CREATE TABLE table_16779068_5 (weightlifter VARCHAR) |
###question:What are Wells Fargo's assets?###answer:SELECT assets__billion_$_ FROM table_1682026_2 WHERE company = "Wells Fargo"###context:CREATE TABLE table_1682026_2 (assets__billion_$_ VARCHAR, company VARCHAR) |
###question:Which company had profits of 26.9?###answer:SELECT company FROM table_1682026_2 WHERE profits__billion_$_ = "26.9"###context:CREATE TABLE table_1682026_2 (company VARCHAR, profits__billion_$_ VARCHAR) |
###question:Which company has a market value of 147.4?###answer:SELECT company FROM table_1682026_2 WHERE market_value__billion_$_ = "147.4"###context:CREATE TABLE table_1682026_2 (company VARCHAR, market_value__billion_$_ VARCHAR) |
###question:When the assets are 2,550, what is the Market Value?###answer:SELECT market_value__billion_$_ FROM table_1682026_2 WHERE assets__billion_$_ = "2,550"###context:CREATE TABLE table_1682026_2 (market_value__billion_$_ VARCHAR, assets__billion_$_ VARCHAR) |
###question:What are the assets for company who's headquarters are located in Brazil?###answer:SELECT assets__billion_$_ FROM table_1682026_2 WHERE headquarters = "Brazil"###context:CREATE TABLE table_1682026_2 (assets__billion_$_ VARCHAR, headquarters VARCHAR) |
###question:Name the population density when barangay is tiptip###answer:SELECT pop_density__per_km²_ FROM table_1686313_1 WHERE barangay = "Tiptip"###context:CREATE TABLE table_1686313_1 (pop_density__per_km²_ VARCHAR, barangay VARCHAR) |
###question:Name the least population 2007 for barangay is poblacion ii###answer:SELECT MIN(population__2007_) FROM table_1686313_1 WHERE barangay = "Poblacion II"###context:CREATE TABLE table_1686313_1 (population__2007_ INTEGER, barangay VARCHAR) |
###question:Name the score for philadelphia flyers ###answer:SELECT score FROM table_16864968_9 WHERE opponent = "Philadelphia Flyers"###context:CREATE TABLE table_16864968_9 (score VARCHAR, opponent VARCHAR) |
###question:Nam the opponent for prudential center###answer:SELECT opponent FROM table_16864968_9 WHERE location = "Prudential Center"###context:CREATE TABLE table_16864968_9 (opponent VARCHAR, location VARCHAR) |
###question:Name the location for 15046 attendance###answer:SELECT location FROM table_16864968_9 WHERE attendance = 15046###context:CREATE TABLE table_16864968_9 (location VARCHAR, attendance VARCHAR) |
###question:How many people attended the Edmonton Oilers game?###answer:SELECT attendance FROM table_16864968_8 WHERE opponent = "Edmonton Oilers"###context:CREATE TABLE table_16864968_8 (attendance VARCHAR, opponent VARCHAR) |
###question:How many points were made in game 70?###answer:SELECT COUNT(points) FROM table_16864968_8 WHERE game = 70###context:CREATE TABLE table_16864968_8 (points VARCHAR, game VARCHAR) |
###question:Who was the opponent in the game where 19041 people attended?###answer:SELECT opponent FROM table_16864968_8 WHERE attendance = 19041###context:CREATE TABLE table_16864968_8 (opponent VARCHAR, attendance VARCHAR) |
###question:How many records were made on March 27, 2009?###answer:SELECT COUNT(record) FROM table_16864968_8 WHERE date = "March 27, 2009"###context:CREATE TABLE table_16864968_8 (record VARCHAR, date VARCHAR) |
###question:What was the score on March 21, 2009?###answer:SELECT score FROM table_16864968_8 WHERE date = "March 21, 2009"###context:CREATE TABLE table_16864968_8 (score VARCHAR, date VARCHAR) |
###question:Name the date for margalita chakhnashvili salome devidze###answer:SELECT date FROM table_16893837_4 WHERE opponents = "Margalita Chakhnashvili Salome Devidze"###context:CREATE TABLE table_16893837_4 (date VARCHAR, opponents VARCHAR) |
###question:Name the most points for independiente###answer:SELECT MAX(points) FROM table_16940409_1 WHERE team = "Independiente"###context:CREATE TABLE table_16940409_1 (points INTEGER, team VARCHAR) |
###question:Name the original air date of 1/2 in season###answer:SELECT original_air_date FROM table_16951593_1 WHERE no_in_season = "1/2"###context:CREATE TABLE table_16951593_1 (original_air_date VARCHAR, no_in_season VARCHAR) |
###question:Name the original air date for number in season being 13###answer:SELECT original_air_date FROM table_16951593_1 WHERE no_in_season = "13"###context:CREATE TABLE table_16951593_1 (original_air_date VARCHAR, no_in_season VARCHAR) |
###question:Namee the title for production code for 4014###answer:SELECT title FROM table_16951593_1 WHERE production_code = "4014"###context:CREATE TABLE table_16951593_1 (title VARCHAR, production_code VARCHAR) |
###question:Name the title for number in season 9###answer:SELECT title FROM table_16951593_1 WHERE no_in_season = "9"###context:CREATE TABLE table_16951593_1 (title VARCHAR, no_in_season VARCHAR) |
###question:Name who wrote the episode that had 7.56 million viewers###answer:SELECT written_by FROM table_16951593_1 WHERE us_viewers__millions_ = "7.56"###context:CREATE TABLE table_16951593_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR) |
###question:Name the wins for best finish being 2nd###answer:SELECT wins FROM table_1697190_1 WHERE best_finish = "2nd"###context:CREATE TABLE table_1697190_1 (wins VARCHAR, best_finish VARCHAR) |
###question:Name the most earnings for money list rank being 143###answer:SELECT MAX(earnings___) AS $__ FROM table_1697190_1 WHERE money_list_rank = 143###context:CREATE TABLE table_1697190_1 (earnings___ INTEGER, money_list_rank VARCHAR) |
###question:Nme the most cuts made for wins being 0###answer:SELECT MAX(cuts_made) FROM table_1697190_1 WHERE wins = 0###context:CREATE TABLE table_1697190_1 (cuts_made INTEGER, wins VARCHAR) |
###question:Name the wins for tournaments played being 14###answer:SELECT wins FROM table_1697190_1 WHERE tournaments_played = 14###context:CREATE TABLE table_1697190_1 (wins VARCHAR, tournaments_played VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.