combined_text stringlengths 106 1.05k |
|---|
###question:What is the nationality of Stromile Swift?###answer:SELECT nationality FROM table_name_48 WHERE player = "stromile swift"###context:CREATE TABLE table_name_48 (nationality VARCHAR, player VARCHAR) |
###question:Which years did the player from Providence play for Memphis?###answer:SELECT years_for_grizzlies FROM table_name_62 WHERE school_club_team = "providence"###context:CREATE TABLE table_name_62 (years_for_grizzlies VARCHAR, school_club_team VARCHAR) |
###question:Which team has a record of 7-1?###answer:SELECT opponent FROM table_name_99 WHERE record = "7-1"###context:CREATE TABLE table_name_99 (opponent VARCHAR, record VARCHAR) |
###question:What game number was the first game played at the Summit this season?###answer:SELECT MIN(game) FROM table_name_25 WHERE location = "the summit"###context:CREATE TABLE table_name_25 (game INTEGER, location VARCHAR) |
###question:What was the final score for the game played against the New York Knicks?###answer:SELECT score FROM table_name_11 WHERE opponent = "new york knicks"###context:CREATE TABLE table_name_11 (score VARCHAR, opponent VARCHAR) |
###question:For the game played at the Boston Garden with a score of 118-110, what is the opposing team's record?###answer:SELECT record FROM table_name_68 WHERE location = "boston garden" AND score = "118-110"###context:CREATE TABLE table_name_68 (record VARCHAR, location VARCHAR, score VARCHAR) |
###question:What is Finish, when Year(s) Won is "1962 , 1967"?###answer:SELECT finish FROM table_name_58 WHERE year_s__won = "1962 , 1967"###context:CREATE TABLE table_name_58 (finish VARCHAR, year_s__won VARCHAR) |
###question:What is Player, when To Par is greater than 6, and when Year(s) Won is "1962 , 1967"?###answer:SELECT player FROM table_name_41 WHERE to_par > 6 AND year_s__won = "1962 , 1967"###context:CREATE TABLE table_name_41 (player VARCHAR, to_par VARCHAR, year_s__won VARCHAR) |
###question:What is Finish, when To Par is less than 14, and when Year(s) Won is "1952 , 1963"?###answer:SELECT finish FROM table_name_85 WHERE to_par < 14 AND year_s__won = "1952 , 1963"###context:CREATE TABLE table_name_85 (finish VARCHAR, to_par VARCHAR, year_s__won VARCHAR) |
###question:What is the highest To Par, when Year(s) Won is "1962 , 1967"?###answer:SELECT MAX(to_par) FROM table_name_66 WHERE year_s__won = "1962 , 1967"###context:CREATE TABLE table_name_66 (to_par INTEGER, year_s__won VARCHAR) |
###question:What is the Total, when To Par is less than 14, when Finish is T12, and when Player is "Julius Boros"?###answer:SELECT total FROM table_name_13 WHERE to_par < 14 AND finish = "t12" AND player = "julius boros"###context:CREATE TABLE table_name_13 (total VARCHAR, player VARCHAR, to_par VARCHAR, finish VARCHAR... |
###question:What is the highest number of artists on Scarface?###answer:SELECT MAX(number) FROM table_name_67 WHERE artist = "scarface"###context:CREATE TABLE table_name_67 (number INTEGER, artist VARCHAR) |
###question:What is the average number for Black Milk?###answer:SELECT AVG(number) FROM table_name_18 WHERE artist = "black milk"###context:CREATE TABLE table_name_18 (number INTEGER, artist VARCHAR) |
###question:What is the lowest average for number 2?###answer:SELECT MIN(average_score) FROM table_name_12 WHERE number = 2###context:CREATE TABLE table_name_12 (average_score INTEGER, number VARCHAR) |
###question:What is the highest score for Black Milk?###answer:SELECT MAX(average_score) FROM table_name_29 WHERE artist = "black milk"###context:CREATE TABLE table_name_29 (average_score INTEGER, artist VARCHAR) |
###question:What surface was played on when Piet Norval was a partner?###answer:SELECT surface FROM table_name_24 WHERE partner = "piet norval"###context:CREATE TABLE table_name_24 (surface VARCHAR, partner VARCHAR) |
###question:What was the surface played on when they were a runner-up in 2007?###answer:SELECT surface FROM table_name_5 WHERE outcome = "runner-up" AND year = 2007###context:CREATE TABLE table_name_5 (surface VARCHAR, outcome VARCHAR, year VARCHAR) |
###question:What is Goals, when Assists is greater than 28, and when Player is Steve Walker?###answer:SELECT goals FROM table_name_89 WHERE assists > 28 AND player = "steve walker"###context:CREATE TABLE table_name_89 (goals VARCHAR, assists VARCHAR, player VARCHAR) |
###question:What is the average Games, when Player is Robert Hock, and when Goals is less than 24?###answer:SELECT AVG(games) FROM table_name_19 WHERE player = "robert hock" AND goals < 24###context:CREATE TABLE table_name_19 (games INTEGER, player VARCHAR, goals VARCHAR) |
###question:What is the average Assists, when Club is Iserlohn Roosters,when Points is 71, and when Goals is greater than 44?###answer:SELECT AVG(assists) FROM table_name_18 WHERE club = "iserlohn roosters" AND points = 71 AND goals > 44###context:CREATE TABLE table_name_18 (assists INTEGER, goals VARCHAR, club VARCHAR... |
###question:What is the average Goals, when Club is Iserlohn Roosters, and when Games is less than 56?###answer:SELECT AVG(goals) FROM table_name_45 WHERE club = "iserlohn roosters" AND games < 56###context:CREATE TABLE table_name_45 (goals INTEGER, club VARCHAR, games VARCHAR) |
###question:What is the location of the game with a 115-105 score?###answer:SELECT location FROM table_name_35 WHERE score = "115-105"###context:CREATE TABLE table_name_35 (location VARCHAR, score VARCHAR) |
###question:What is the record of the game with a 110-106 score?###answer:SELECT record FROM table_name_89 WHERE score = "110-106"###context:CREATE TABLE table_name_89 (record VARCHAR, score VARCHAR) |
###question:What is the record of game 48?###answer:SELECT record FROM table_name_40 WHERE game = 48###context:CREATE TABLE table_name_40 (record VARCHAR, game VARCHAR) |
###question:What is the record of the game with a 110-106 score?###answer:SELECT record FROM table_name_1 WHERE score = "110-106"###context:CREATE TABLE table_name_1 (record VARCHAR, score VARCHAR) |
###question:What is the score at the forum location?###answer:SELECT score FROM table_name_23 WHERE location = "the forum"###context:CREATE TABLE table_name_23 (score VARCHAR, location VARCHAR) |
###question:What is Method, when Location is "Tokyo , Japan", and when Event is "Rings: Millennium Combine 2"?###answer:SELECT method FROM table_name_38 WHERE location = "tokyo , japan" AND event = "rings: millennium combine 2"###context:CREATE TABLE table_name_38 (method VARCHAR, location VARCHAR, event VARCHAR) |
###question:What is Method, when Opponent is "Chalid Arrab"?###answer:SELECT method FROM table_name_4 WHERE opponent = "chalid arrab"###context:CREATE TABLE table_name_4 (method VARCHAR, opponent VARCHAR) |
###question:What is the sum of Round, when Record is "19-25-5"?###answer:SELECT SUM(round) FROM table_name_70 WHERE record = "19-25-5"###context:CREATE TABLE table_name_70 (round INTEGER, record VARCHAR) |
###question:Which region has Stanford University as host?###answer:SELECT region FROM table_name_12 WHERE host = "stanford university"###context:CREATE TABLE table_name_12 (region VARCHAR, host VARCHAR) |
###question:Which state contains the University of Iowa in the mideast region?###answer:SELECT state FROM table_name_67 WHERE region = "mideast" AND host = "university of iowa"###context:CREATE TABLE table_name_67 (state VARCHAR, region VARCHAR, host VARCHAR) |
###question:Which state includes the city of Storrs?###answer:SELECT state FROM table_name_25 WHERE city = "storrs"###context:CREATE TABLE table_name_25 (state VARCHAR, city VARCHAR) |
###question:Which state includes the Harry A. Gampel Pavilion venue?###answer:SELECT state FROM table_name_10 WHERE venue = "harry a. gampel pavilion"###context:CREATE TABLE table_name_10 (state VARCHAR, venue VARCHAR) |
###question:Which city is in Georgia?###answer:SELECT city FROM table_name_55 WHERE state = "georgia"###context:CREATE TABLE table_name_55 (city VARCHAR, state VARCHAR) |
###question:What is the total number of rounds that had Jason Missiaen?###answer:SELECT COUNT(round) FROM table_name_75 WHERE player = "jason missiaen"###context:CREATE TABLE table_name_75 (round VARCHAR, player VARCHAR) |
###question:What player is from Russia?###answer:SELECT player FROM table_name_8 WHERE nationality = "russia"###context:CREATE TABLE table_name_8 (player VARCHAR, nationality VARCHAR) |
###question:What nationality is the pick from round 7?###answer:SELECT nationality FROM table_name_9 WHERE round = 7###context:CREATE TABLE table_name_9 (nationality VARCHAR, round VARCHAR) |
###question:what is the album when the year is later than 2008?###answer:SELECT album FROM table_name_77 WHERE year > 2008###context:CREATE TABLE table_name_77 (album VARCHAR, year INTEGER) |
###question:What is the Championship Game that has 4 Bids and a .600 Win %?###answer:SELECT championship_game FROM table_name_40 WHERE _number_of_bids = 4 AND win__percentage = ".600"###context:CREATE TABLE table_name_40 (championship_game VARCHAR, _number_of_bids VARCHAR, win__percentage VARCHAR) |
###question:What is the team 2 with cobreloa as team 1?###answer:SELECT team_2 FROM table_name_2 WHERE team_1 = "cobreloa"###context:CREATE TABLE table_name_2 (team_2 VARCHAR, team_1 VARCHAR) |
###question:How many picks had a round smaller than 6 and an overall bigger than 153?###answer:SELECT SUM(pick) FROM table_name_47 WHERE round < 6 AND overall > 153###context:CREATE TABLE table_name_47 (pick INTEGER, round VARCHAR, overall VARCHAR) |
###question:What was the attendance on 31 January 2009 when the opponent was Airdrie United?###answer:SELECT AVG(attendance) FROM table_name_33 WHERE opponent = "airdrie united" AND date = "31 january 2009"###context:CREATE TABLE table_name_33 (attendance INTEGER, opponent VARCHAR, date VARCHAR) |
###question:In what venue was the event held on 14 February 2009?###answer:SELECT venue FROM table_name_95 WHERE date = "14 february 2009"###context:CREATE TABLE table_name_95 (venue VARCHAR, date VARCHAR) |
###question:What is the average attendance for all events held at Palmerston Park venue?###answer:SELECT AVG(attendance) FROM table_name_24 WHERE venue = "palmerston park"###context:CREATE TABLE table_name_24 (attendance INTEGER, venue VARCHAR) |
###question:What is the total number of t (µm), when Technology is u c-si?###answer:SELECT COUNT(t__µm_) FROM table_name_67 WHERE technology = "u c-si"###context:CREATE TABLE table_name_67 (t__µm_ VARCHAR, technology VARCHAR) |
###question:What is the V OC (V), when t (µm) is greater than 5, and when I SC (A) is 0.8?###answer:SELECT v_oc__v_ FROM table_name_46 WHERE t__µm_ > 5 AND i_sc__a_ = "0.8"###context:CREATE TABLE table_name_46 (v_oc__v_ VARCHAR, t__µm_ VARCHAR, i_sc__a_ VARCHAR) |
###question:What is the sum of t (µm), when Technology is MJ?###answer:SELECT SUM(t__µm_) FROM table_name_26 WHERE technology = "mj"###context:CREATE TABLE table_name_26 (t__µm_ INTEGER, technology VARCHAR) |
###question:What is W/m², when η (%) is greater than 16.5, and when Technology is MJ?###answer:SELECT w_m² FROM table_name_60 WHERE η___percentage_ > 16.5 AND technology = "mj"###context:CREATE TABLE table_name_60 (w_m² VARCHAR, η___percentage_ VARCHAR, technology VARCHAR) |
###question:What type of Bridge is in Stanley?###answer:SELECT type FROM table_name_87 WHERE location = "stanley"###context:CREATE TABLE table_name_87 (type VARCHAR, location VARCHAR) |
###question:What type of bridge is Colton's Crossing Bridge?###answer:SELECT type FROM table_name_46 WHERE name = "colton's crossing bridge"###context:CREATE TABLE table_name_46 (type VARCHAR, name VARCHAR) |
###question:What bridge is a pratt pony through truss tyoe bridge?###answer:SELECT name FROM table_name_4 WHERE type = "pratt pony through truss"###context:CREATE TABLE table_name_4 (name VARCHAR, type VARCHAR) |
###question:What type of bridge is in Cooperstown?###answer:SELECT type FROM table_name_8 WHERE location = "cooperstown"###context:CREATE TABLE table_name_8 (type VARCHAR, location VARCHAR) |
###question:What bridge is in Mcville?###answer:SELECT name FROM table_name_69 WHERE location = "mcville"###context:CREATE TABLE table_name_69 (name VARCHAR, location VARCHAR) |
###question:Which tracking method supports MySQL databases and is named Open Web Analytics?###answer:SELECT tracking_method FROM table_name_62 WHERE supported_databases = "mysql" AND name = "open web analytics"###context:CREATE TABLE table_name_62 (tracking_method VARCHAR, supported_databases VARCHAR, name VARCHAR) |
###question:Which tracking method has a latest stable release of 2.23-05?###answer:SELECT tracking_method FROM table_name_14 WHERE latest_stable_release = "2.23-05"###context:CREATE TABLE table_name_14 (tracking_method VARCHAR, latest_stable_release VARCHAR) |
###question:What is the latest stable release date for Crawltrack?###answer:SELECT latest_stable_release FROM table_name_83 WHERE name = "crawltrack"###context:CREATE TABLE table_name_83 (latest_stable_release VARCHAR, name VARCHAR) |
###question:Which tracking method has a latest stable release of 6.0?###answer:SELECT tracking_method FROM table_name_23 WHERE latest_stable_release = "6.0"###context:CREATE TABLE table_name_23 (tracking_method VARCHAR, latest_stable_release VARCHAR) |
###question:What is the least passengers from the Dallas/Fort Worth International (DFW) airport?###answer:SELECT MIN(passengers) FROM table_name_75 WHERE airport = "dallas/fort worth international (dfw)"###context:CREATE TABLE table_name_75 (passengers INTEGER, airport VARCHAR) |
###question:What city is ranked greater than 6, and the airport is St. Petersburg/Clearwater (PIE)###answer:SELECT city FROM table_name_79 WHERE rank > 6 AND airport = "st. petersburg/clearwater (pie)"###context:CREATE TABLE table_name_79 (city VARCHAR, rank VARCHAR, airport VARCHAR) |
###question:What is the total rank of the airport that has 79,290 passengers?###answer:SELECT COUNT(rank) FROM table_name_63 WHERE passengers = 79 OFFSET 290###context:CREATE TABLE table_name_63 (rank VARCHAR, passengers VARCHAR) |
###question:Which Winner has a Country of norway, and a FIS Nordic World Ski Championships of 1924?###answer:SELECT winner FROM table_name_97 WHERE country = "norway" AND fis_nordic_world_ski_championships = "1924"###context:CREATE TABLE table_name_97 (winner VARCHAR, country VARCHAR, fis_nordic_world_ski_championships... |
###question:Which Country has a FIS Nordic World Ski Championships of 1948, 1950?###answer:SELECT country FROM table_name_96 WHERE fis_nordic_world_ski_championships = "1948, 1950"###context:CREATE TABLE table_name_96 (country VARCHAR, fis_nordic_world_ski_championships VARCHAR) |
###question:Which Holmenkollen has a Country of norway, and a Winner of tom sandberg?###answer:SELECT holmenkollen FROM table_name_22 WHERE country = "norway" AND winner = "tom sandberg"###context:CREATE TABLE table_name_22 (holmenkollen VARCHAR, country VARCHAR, winner VARCHAR) |
###question:Which FIS Nordic World Ski Championships has Winter Olympics of 1960?###answer:SELECT fis_nordic_world_ski_championships FROM table_name_44 WHERE winter_olympics = "1960"###context:CREATE TABLE table_name_44 (fis_nordic_world_ski_championships VARCHAR, winter_olympics VARCHAR) |
###question:Which Country has a Winter Olympics of 1948?###answer:SELECT country FROM table_name_28 WHERE winter_olympics = "1948"###context:CREATE TABLE table_name_28 (country VARCHAR, winter_olympics VARCHAR) |
###question:Which Winner has a Winter Olympics of 1968?###answer:SELECT winner FROM table_name_31 WHERE winter_olympics = "1968"###context:CREATE TABLE table_name_31 (winner VARCHAR, winter_olympics VARCHAR) |
###question:What was the result of the game when the attendance was 43,279?###answer:SELECT result FROM table_name_8 WHERE attendance = "43,279"###context:CREATE TABLE table_name_8 (result VARCHAR, attendance VARCHAR) |
###question:What is the average Attendance, when Date is 1 October 1998?###answer:SELECT AVG(attendance) FROM table_name_28 WHERE date = "1 october 1998"###context:CREATE TABLE table_name_28 (attendance INTEGER, date VARCHAR) |
###question:What is Opponent, when Date is 17 September 1998?###answer:SELECT opponent FROM table_name_76 WHERE date = "17 september 1998"###context:CREATE TABLE table_name_76 (opponent VARCHAR, date VARCHAR) |
###question:What is Opponent, when Date is 8 April 1999?###answer:SELECT opponent FROM table_name_18 WHERE date = "8 april 1999"###context:CREATE TABLE table_name_18 (opponent VARCHAR, date VARCHAR) |
###question:WHAT IS THE HIGHEST POINTS FOR LOS ANGELES?###answer:SELECT high_points FROM table_name_89 WHERE opponent = "los angeles"###context:CREATE TABLE table_name_89 (high_points VARCHAR, opponent VARCHAR) |
###question:What was the Score F-A when the result was D?###answer:SELECT score_f_a FROM table_name_39 WHERE result = "d"###context:CREATE TABLE table_name_39 (score_f_a VARCHAR, result VARCHAR) |
###question:On which date did they play Leicester City in Venue A?###answer:SELECT date FROM table_name_38 WHERE venue = "a" AND opponents = "leicester city"###context:CREATE TABLE table_name_38 (date VARCHAR, venue VARCHAR, opponents VARCHAR) |
###question:What was the result of the game played in Venue H?###answer:SELECT result FROM table_name_27 WHERE venue = "h"###context:CREATE TABLE table_name_27 (result VARCHAR, venue VARCHAR) |
###question:What was the result of the game played on 17 July 2008?###answer:SELECT result FROM table_name_42 WHERE date = "17 july 2008"###context:CREATE TABLE table_name_42 (result VARCHAR, date VARCHAR) |
###question:What Passenger has 16 Wins?###answer:SELECT passenger FROM table_name_94 WHERE wins = "16"###context:CREATE TABLE table_name_94 (passenger VARCHAR, wins VARCHAR) |
###question:Name the Time of broadcast has a Picture format of 4:3, and Hours of 20:30, and Days of the week of monday, wednesday, friday?###answer:SELECT time_of_broadcast FROM table_name_23 WHERE picture_format = "4:3" AND hours = "20:30" AND days_of_the_week = "monday, wednesday, friday"###context:CREATE TABLE table... |
###question:Which Days of the week has a Time of broadcast in january–february, june 2002?###answer:SELECT days_of_the_week FROM table_name_31 WHERE time_of_broadcast = "january–february, june 2002"###context:CREATE TABLE table_name_31 (days_of_the_week VARCHAR, time_of_broadcast VARCHAR) |
###question:Which Outcome has a Championship of us championships, and a Score in the final of 5–7, 6–1, 6–3, 6–3?###answer:SELECT outcome FROM table_name_61 WHERE championship = "us championships" AND score_in_the_final = "5–7, 6–1, 6–3, 6–3"###context:CREATE TABLE table_name_61 (outcome VARCHAR, championship VARCHAR, ... |
###question:Which Outcome has a Year larger than 1939, and an Opponent in the final of frank kovacs?###answer:SELECT outcome FROM table_name_44 WHERE year > 1939 AND opponent_in_the_final = "frank kovacs"###context:CREATE TABLE table_name_44 (outcome VARCHAR, year VARCHAR, opponent_in_the_final VARCHAR) |
###question:Which Surface has an Opponent in the final of don mcneill, and a Year of 1940?###answer:SELECT surface FROM table_name_52 WHERE opponent_in_the_final = "don mcneill" AND year = 1940###context:CREATE TABLE table_name_52 (surface VARCHAR, opponent_in_the_final VARCHAR, year VARCHAR) |
###question:How many years have an Opponent in the final of welby van horn?###answer:SELECT SUM(year) FROM table_name_74 WHERE opponent_in_the_final = "welby van horn"###context:CREATE TABLE table_name_74 (year INTEGER, opponent_in_the_final VARCHAR) |
###question:What is the score of player dick metz?###answer:SELECT score FROM table_name_74 WHERE player = "dick metz"###context:CREATE TABLE table_name_74 (score VARCHAR, player VARCHAR) |
###question:Which season had EV Bad Wörishofen in the West?###answer:SELECT season FROM table_name_60 WHERE west = "ev bad wörishofen"###context:CREATE TABLE table_name_60 (season VARCHAR, west VARCHAR) |
###question:Who was in the South in the 2004-05 season?###answer:SELECT south FROM table_name_92 WHERE season = "2004-05"###context:CREATE TABLE table_name_92 (south VARCHAR, season VARCHAR) |
###question:Who was in the South when EV Bad Wörishofen was in the West?###answer:SELECT south FROM table_name_10 WHERE west = "ev bad wörishofen"###context:CREATE TABLE table_name_10 (south VARCHAR, west VARCHAR) |
###question:Who was in the South when TSV Kottern was in the West and EHF Passau was in the East?###answer:SELECT south FROM table_name_40 WHERE west = "tsv kottern" AND east = "ehf passau"###context:CREATE TABLE table_name_40 (south VARCHAR, west VARCHAR, east VARCHAR) |
###question:Who was in the East when TUS Geretsried II was in the South?###answer:SELECT east FROM table_name_9 WHERE south = "tus geretsried ii"###context:CREATE TABLE table_name_9 (east VARCHAR, south VARCHAR) |
###question:Who was in the West when ESV Gebensbach was in the East?###answer:SELECT west FROM table_name_32 WHERE east = "esv gebensbach"###context:CREATE TABLE table_name_32 (west VARCHAR, east VARCHAR) |
###question:What is the average Gold, when Nation is Hungary, and when Bronze is greater than 1?###answer:SELECT AVG(gold) FROM table_name_2 WHERE nation = "hungary" AND bronze > 1###context:CREATE TABLE table_name_2 (gold INTEGER, nation VARCHAR, bronze VARCHAR) |
###question:What is the average Total, when Nation is Soviet Union, and when Gold is greater than 9?###answer:SELECT AVG(total) FROM table_name_33 WHERE nation = "soviet union" AND gold > 9###context:CREATE TABLE table_name_33 (total INTEGER, nation VARCHAR, gold VARCHAR) |
###question:What is the total number of Bronze, when Silver is greater than 0, when Gold is greater than 3, and when Rank is 1?###answer:SELECT COUNT(bronze) FROM table_name_75 WHERE silver > 0 AND gold > 3 AND rank = "1"###context:CREATE TABLE table_name_75 (bronze VARCHAR, rank VARCHAR, silver VARCHAR, gold VARCHAR) |
###question:What is the highest Bronze, when Total is less than 3, and when Silver is less than 0?###answer:SELECT MAX(bronze) FROM table_name_86 WHERE total < 3 AND silver < 0###context:CREATE TABLE table_name_86 (bronze INTEGER, total VARCHAR, silver VARCHAR) |
###question:What is the average Total, when Silver is greater than 4, and when Gold is greater than 16?###answer:SELECT AVG(total) FROM table_name_2 WHERE silver > 4 AND gold > 16###context:CREATE TABLE table_name_2 (total INTEGER, silver VARCHAR, gold VARCHAR) |
###question:What is the sum of Silver, when Total is less than 1?###answer:SELECT SUM(silver) FROM table_name_84 WHERE total < 1###context:CREATE TABLE table_name_84 (silver INTEGER, total INTEGER) |
###question:What is day 4 when day 2 is PAAQ?###answer:SELECT day_4 FROM table_name_3 WHERE day_2 = "paaq"###context:CREATE TABLE table_name_3 (day_4 VARCHAR, day_2 VARCHAR) |
###question:What is the other value associated with a Christianity value of 10.24%?###answer:SELECT other FROM table_name_21 WHERE christianity = "10.24%"###context:CREATE TABLE table_name_21 (other VARCHAR, christianity VARCHAR) |
###question:What is the Judaism percentage associated with Buddhism at 0.01% and Other at 0.13%?###answer:SELECT judaism FROM table_name_15 WHERE other = "0.13%" AND buddhism = "0.01%"###context:CREATE TABLE table_name_15 (judaism VARCHAR, other VARCHAR, buddhism VARCHAR) |
###question:What is the percentage of Atheism associated with an other percentage of 0.08%?###answer:SELECT atheism FROM table_name_90 WHERE other = "0.08%"###context:CREATE TABLE table_name_90 (atheism VARCHAR, other VARCHAR) |
###question:What is the percentage of Buddhists associated with a Christianity percentage of 52.32%?###answer:SELECT buddhism FROM table_name_6 WHERE christianity = "52.32%"###context:CREATE TABLE table_name_6 (buddhism VARCHAR, christianity VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.