answer stringlengths 32 484 | context stringlengths 27 489 | question stringlengths 12 244 |
|---|---|---|
SELECT election FROM table_name_63 WHERE outcome_of_election = "ndc opposition" AND number_of_votes = "2,728,241" | CREATE TABLE table_name_63 (election VARCHAR, outcome_of_election VARCHAR, number_of_votes VARCHAR) | What is the election with an outcome of ndc opposition and 2,728,241 votes? |
SELECT outcome_of_election FROM table_name_26 WHERE share_of_votes = "43.3%" | CREATE TABLE table_name_26 (outcome_of_election VARCHAR, share_of_votes VARCHAR) | What is the outcome of the election with 43.3% share of votes? |
SELECT candidate FROM table_name_50 WHERE election = "2012" | CREATE TABLE table_name_50 (candidate VARCHAR, election VARCHAR) | Who is the candidate in the 2012 election? |
SELECT score FROM table_name_44 WHERE player = "mark o'meara" | CREATE TABLE table_name_44 (score VARCHAR, player VARCHAR) | What is Mark O'Meara's Score? |
SELECT score FROM table_name_11 WHERE player = "curtis strange" | CREATE TABLE table_name_11 (score VARCHAR, player VARCHAR) | What is Curtis Strange's Score? |
SELECT tracks FROM table_name_20 WHERE catalog = "ba 222304" AND length = "2:57" | CREATE TABLE table_name_20 (tracks VARCHAR, catalog VARCHAR, length VARCHAR) | What is the Tracks of the release in Catalog BA 222304 with a Length of 2:57? |
SELECT MAX(match_no) FROM table_name_92 WHERE date = "2008-03-21" AND time = "16:00" | CREATE TABLE table_name_92 (match_no INTEGER, date VARCHAR, time VARCHAR) | What is the highest Match No., when Date is 2008-03-21, and when Time is 16:00? |
SELECT venue FROM table_name_12 WHERE runs = "325/6" | CREATE TABLE table_name_12 (venue VARCHAR, runs VARCHAR) | What was the venue for runs 325/6? |
SELECT season FROM table_name_25 WHERE runs = "310/9" | CREATE TABLE table_name_25 (season VARCHAR, runs VARCHAR) | What season were the runs 310/9? |
SELECT runs FROM table_name_64 WHERE opponent = "west indies" | CREATE TABLE table_name_64 (runs VARCHAR, opponent VARCHAR) | What were the runs for the opponent from the West Indies? |
SELECT AVG(money___) AS $__ FROM table_name_95 WHERE score = 70 - 66 - 73 - 69 = 278 | CREATE TABLE table_name_95 (money___ INTEGER, score VARCHAR) | Which Money ($) has a Score of 70-66-73-69=278? |
SELECT AVG(round) FROM table_name_78 WHERE opponent = "sam sotello" | CREATE TABLE table_name_78 (round INTEGER, opponent VARCHAR) | How many rounds did the match last with Sam Sotello as the opponent? |
SELECT record FROM table_name_26 WHERE res = "loss" AND event = "ufc 62" | CREATE TABLE table_name_26 (record VARCHAR, res VARCHAR, event VARCHAR) | What is the record for the loss in UFC 62? |
SELECT part_4 FROM table_name_6 WHERE part_3 = "*heguldun *febungun" | CREATE TABLE table_name_6 (part_4 VARCHAR, part_3 VARCHAR) | What is the part 4 with *heguldun *febungun in part 3? |
SELECT part_3 FROM table_name_31 WHERE part_2 = "*hegait" | CREATE TABLE table_name_31 (part_3 VARCHAR, part_2 VARCHAR) | What is the part 3 with *hegait in part 2? |
SELECT part_4 FROM table_name_6 WHERE part_1 = "*hlaupaną *stautaną" | CREATE TABLE table_name_6 (part_4 VARCHAR, part_1 VARCHAR) | What is the part 4 with *hlaupaną *stautaną in part 1? |
SELECT verb_meaning FROM table_name_26 WHERE part_1 = "*haldaną *fanhaną" | CREATE TABLE table_name_26 (verb_meaning VARCHAR, part_1 VARCHAR) | What is the verb meaning of *haldaną *fanhaną in part 1? |
SELECT producer_s_ FROM table_name_43 WHERE songwriter_s_ = "sezen aksu" | CREATE TABLE table_name_43 (producer_s_ VARCHAR, songwriter_s_ VARCHAR) | Who is sezen aksu's producer? |
SELECT title FROM table_name_72 WHERE songwriter_s_ = "hadise açıkgöz, stefaan fernande, elio deepcore" | CREATE TABLE table_name_72 (title VARCHAR, songwriter_s_ VARCHAR) | Which Title has a Songwriter(s) of hadise açıkgöz, stefaan fernande, elio deepcore? |
SELECT title FROM table_name_91 WHERE length = "3:32" AND producer_s_ = "hadise açıkgöz, yves jongen" | CREATE TABLE table_name_91 (title VARCHAR, length VARCHAR, producer_s_ VARCHAR) | Which Title has a Length of 3:32, and a Producer(s) of hadise açıkgöz, yves jongen? |
SELECT producer_s_ FROM table_name_46 WHERE track < 8 AND songwriter_s_ = "hadise açıkgöz, yves jongen" AND length = "3:08" | CREATE TABLE table_name_46 (producer_s_ VARCHAR, length VARCHAR, track VARCHAR, songwriter_s_ VARCHAR) | Which Producer(s) has a Track smaller than 8, and a Songwriter(s) of hadise açıkgöz, yves jongen, and a Length of 3:08? |
SELECT title FROM table_name_62 WHERE track = 6 | CREATE TABLE table_name_62 (title VARCHAR, track VARCHAR) | What is track 6's title? |
SELECT company_name FROM table_name_31 WHERE hardware_model = "nokia 700" | CREATE TABLE table_name_31 (company_name VARCHAR, hardware_model VARCHAR) | What company makes the Nokia 700? |
SELECT accreditation_level FROM table_name_72 WHERE date = "approved (awarded 05.12.12)" | CREATE TABLE table_name_72 (accreditation_level VARCHAR, date VARCHAR) | What is the accreditation level for the approved (awarded 05.12.12) date? |
SELECT date FROM table_name_99 WHERE company_name = "samsung electronics co ltd" AND hardware_model = "gt-i9100" | CREATE TABLE table_name_99 (date VARCHAR, company_name VARCHAR, hardware_model VARCHAR) | When did Samsung Electronics Co LTD make the GT-i9100? |
SELECT accreditation_type FROM table_name_5 WHERE accreditation_level = "joyn" AND company_name = "nokia corporation" | CREATE TABLE table_name_5 (accreditation_type VARCHAR, accreditation_level VARCHAR, company_name VARCHAR) | When the Nokia corporation had an accreditation level of joyn, what was the accreditation type? |
SELECT round FROM table_name_53 WHERE record = "4-1" | CREATE TABLE table_name_53 (round VARCHAR, record VARCHAR) | What is Round, when Record is "4-1"? |
SELECT opponent FROM table_name_43 WHERE location = "tokyo , japan" AND method = "decision (unanimous)" AND record = "4-1" | CREATE TABLE table_name_43 (opponent VARCHAR, record VARCHAR, location VARCHAR, method VARCHAR) | What is Opponent, when Location is "Tokyo , Japan", when Method is "Decision (unanimous)", and when Record is "4-1"? |
SELECT method FROM table_name_19 WHERE opponent = "thiago alves" | CREATE TABLE table_name_19 (method VARCHAR, opponent VARCHAR) | What is Method, when Opponent is "Thiago Alves"? |
SELECT event FROM table_name_64 WHERE round = "1" AND location = "osaka , japan" AND method = "tko (corner stoppage)" | CREATE TABLE table_name_64 (event VARCHAR, method VARCHAR, round VARCHAR, location VARCHAR) | What is Event, when Round is "1", when Location is "Osaka , Japan", and when Method is "TKO (corner stoppage)"? |
SELECT record FROM table_name_78 WHERE event = "ufc 64" | CREATE TABLE table_name_78 (record VARCHAR, event VARCHAR) | What is Record, when Event is "UFC 64"? |
SELECT record FROM table_name_57 WHERE game < 24 AND decision = "lundqvist" AND november < 8 AND opponent = "new york islanders" | CREATE TABLE table_name_57 (record VARCHAR, opponent VARCHAR, november VARCHAR, game VARCHAR, decision VARCHAR) | What is the Record for a game smaller than 24, Lundqvist was the decision, November less than 8, and opponent Was New York Islanders? |
SELECT MIN(game) FROM table_name_44 WHERE record = "16-7-2" | CREATE TABLE table_name_44 (game INTEGER, record VARCHAR) | What is the smallest game number with a record of 16-7-2? |
SELECT score FROM table_name_31 WHERE decision = "lundqvist" AND november < 28 AND opponent = "boston bruins" | CREATE TABLE table_name_31 (score VARCHAR, opponent VARCHAR, decision VARCHAR, november VARCHAR) | What is the Score of the game with a decision of Lundqvist, the November less than 28, and opponent was Boston Bruins? |
SELECT venue FROM table_name_78 WHERE competition = "2013 eaff east asian cup qualifier" | CREATE TABLE table_name_78 (venue VARCHAR, competition VARCHAR) | Where was the 2013 Eaff East Asian Cup Qualifier played? |
SELECT MAX(points) FROM table_name_63 WHERE goal_average > 4 AND draws < 12 AND goals_for = 63 | CREATE TABLE table_name_63 (points INTEGER, goals_for VARCHAR, goal_average VARCHAR, draws VARCHAR) | What is the highest amount of points with a goal average larger than 4, less than 12 draws, and a goal of 63? |
SELECT MIN(goals_for) FROM table_name_43 WHERE goals_against = 37 AND victories < 15 | CREATE TABLE table_name_43 (goals_for INTEGER, goals_against VARCHAR, victories VARCHAR) | What is the lowest goal for a goal against 37 and less than 15 victories? |
SELECT AVG(goals_for) FROM table_name_52 WHERE rank = 3 | CREATE TABLE table_name_52 (goals_for INTEGER, rank VARCHAR) | How many goals on average are there for rank 3? |
SELECT AVG(goals_against) FROM table_name_55 WHERE played > 42 | CREATE TABLE table_name_55 (goals_against INTEGER, played INTEGER) | What is the average goals against when there are more than 42 played? |
SELECT goal_difference FROM table_name_99 WHERE team = "chorley" | CREATE TABLE table_name_99 (goal_difference VARCHAR, team VARCHAR) | What is the goal difference for the team from Chorley? |
SELECT score FROM table_name_26 WHERE place = "t8" AND player = "scott hoch" | CREATE TABLE table_name_26 (score VARCHAR, place VARCHAR, player VARCHAR) | What is T8 Place Player Scott Hoch's Score? |
SELECT place FROM table_name_37 WHERE score = 67 - 76 - 74 - 67 = 284 | CREATE TABLE table_name_37 (place VARCHAR, score VARCHAR) | What is the Place of the Player with a Score of 67-76-74-67=284? |
SELECT money___$__ FROM table_name_70 WHERE score = 69 - 71 - 69 - 72 = 281 | CREATE TABLE table_name_70 (money___$__ VARCHAR, score VARCHAR) | What is the Money of the Player with a Score of 69-71-69-72=281? |
SELECT MAX(rank) FROM table_name_82 WHERE u_17_goals = 7 AND player = "cesc fàbregas" | CREATE TABLE table_name_82 (rank INTEGER, u_17_goals VARCHAR, player VARCHAR) | What is the highest Rank, when U-17 Goals is "7", and when Player is "Cesc Fàbregas"? |
SELECT MAX(rank) FROM table_name_49 WHERE u_17_goals = 9 | CREATE TABLE table_name_49 (rank INTEGER, u_17_goals VARCHAR) | What is the highest Rank, when U-17 Goals is "9"? |
SELECT competition FROM table_name_50 WHERE result = "draw" | CREATE TABLE table_name_50 (competition VARCHAR, result VARCHAR) | What Competition has a Result of Draw? |
SELECT date FROM table_name_85 WHERE score = "1–2" | CREATE TABLE table_name_85 (date VARCHAR, score VARCHAR) | What is the Date of the Competition with a Score of 1–2? |
SELECT competition FROM table_name_33 WHERE venue = "new delhi" AND result = "loss" | CREATE TABLE table_name_33 (competition VARCHAR, venue VARCHAR, result VARCHAR) | What New Delhi Competition has a Result of Loss? |
SELECT COUNT(round) FROM table_name_7 WHERE record = "1-5" | CREATE TABLE table_name_7 (round VARCHAR, record VARCHAR) | How many rounds in the event when record is 1-5? |
SELECT opponent FROM table_name_23 WHERE res = "win" AND round > 1 AND record = "42-27-10" | CREATE TABLE table_name_23 (opponent VARCHAR, record VARCHAR, res VARCHAR, round VARCHAR) | Who is the opponent when there is a win in round greater than 1 and the record is 42-27-10? |
SELECT team_e FROM table_name_89 WHERE team_f = "jason manning" | CREATE TABLE table_name_89 (team_e VARCHAR, team_f VARCHAR) | Who is team E when Jason Manning is Team F? |
SELECT team_a FROM table_name_35 WHERE team_c = "wilma hofschneider-david" | CREATE TABLE table_name_35 (team_a VARCHAR, team_c VARCHAR) | Who is Team A when wilma hofschneider-david is team C? |
SELECT team_f FROM table_name_16 WHERE team_a = "aida gagaring" | CREATE TABLE table_name_16 (team_f VARCHAR, team_a VARCHAR) | Who is team f when Aida Gagaring is team A? |
SELECT team_d FROM table_name_61 WHERE team_c = "carmen ada" | CREATE TABLE table_name_61 (team_d VARCHAR, team_c VARCHAR) | Who is Team D when Carmen Ada is team C? |
SELECT team_e FROM table_name_94 WHERE team_d = "aaron solloway" | CREATE TABLE table_name_94 (team_e VARCHAR, team_d VARCHAR) | Who is team e when Aaron Solloway is team D? |
SELECT team_c FROM table_name_44 WHERE team_e = "dhez javier" | CREATE TABLE table_name_44 (team_c VARCHAR, team_e VARCHAR) | Who is team c when dhez javier is team e? |
SELECT country FROM table_name_68 WHERE to_par = "+5" | CREATE TABLE table_name_68 (country VARCHAR, to_par VARCHAR) | What was the country of the player at +5? |
SELECT player FROM table_name_31 WHERE to_par = "+4" | CREATE TABLE table_name_31 (player VARCHAR, to_par VARCHAR) | Which player finished at +4? |
SELECT to_par FROM table_name_21 WHERE player = "bert yancey" | CREATE TABLE table_name_21 (to_par VARCHAR, player VARCHAR) | What was Bert Yancey's finishing score to par? |
SELECT bachelorette FROM table_name_20 WHERE winner = "ian mckee" | CREATE TABLE table_name_20 (bachelorette VARCHAR, winner VARCHAR) | Who was the bachelorette of the season where ian mckee was the winner? |
SELECT MIN(season) FROM table_name_38 WHERE profile = "advertising account manager" | CREATE TABLE table_name_38 (season INTEGER, profile VARCHAR) | What is the earliest season with an advertising account manager profile? |
SELECT bachelorette FROM table_name_37 WHERE premiered = "may 24, 2010" | CREATE TABLE table_name_37 (bachelorette VARCHAR, premiered VARCHAR) | Who is the bachelorette of the season that premiered on May 24, 2010? |
SELECT bachelorette FROM table_name_25 WHERE season > 8 | CREATE TABLE table_name_25 (bachelorette VARCHAR, season INTEGER) | Who is the bachelorette after season 8? |
SELECT win__percentage FROM table_name_51 WHERE _number_of_bids = 2 AND conference = "west coast" | CREATE TABLE table_name_51 (win__percentage VARCHAR, _number_of_bids VARCHAR, conference VARCHAR) | When the conference is west coast and the number of bids are at 2, what's the percentage of games won? |
SELECT championship_game FROM table_name_82 WHERE win__percentage = ".429" | CREATE TABLE table_name_82 (championship_game VARCHAR, win__percentage VARCHAR) | If a team had a percentage of games won recorded as .429, what Championship Game was played? |
SELECT attendance FROM table_name_94 WHERE week = 3 | CREATE TABLE table_name_94 (attendance VARCHAR, week VARCHAR) | What was the attendance for the game in Week 3? |
SELECT date FROM table_name_43 WHERE opponent = "green bay packers" | CREATE TABLE table_name_43 (date VARCHAR, opponent VARCHAR) | On what date was the opponent the Green Bay Packers? |
SELECT term_start FROM table_name_61 WHERE name = "ismail qemali bej" | CREATE TABLE table_name_61 (term_start VARCHAR, name VARCHAR) | When did Ismail Qemali Bej's term start? |
SELECT term_end FROM table_name_5 WHERE name = "fejzi bej alizoti" | CREATE TABLE table_name_5 (term_end VARCHAR, name VARCHAR) | When did Fejzi Bej Alizoti's term end? |
SELECT term_end FROM table_name_89 WHERE term_start = "28 november 1912" | CREATE TABLE table_name_89 (term_end VARCHAR, term_start VARCHAR) | When did the term end for the person who started their term on 28 November 1912? |
SELECT term_start FROM table_name_38 WHERE name = "fejzi bej alizoti" | CREATE TABLE table_name_38 (term_start VARCHAR, name VARCHAR) | When did Fejzi Bej Alizoti's term start? |
SELECT SUM(points_1) FROM table_name_55 WHERE team = "gainsborough trinity" AND played > 46 | CREATE TABLE table_name_55 (points_1 INTEGER, team VARCHAR, played VARCHAR) | What is the sum of Points 1, when Team is "Gainsborough Trinity", and when Played is greater than 46? |
SELECT COUNT(points_1) FROM table_name_10 WHERE lost < 20 AND goals_for > 92 | CREATE TABLE table_name_10 (points_1 VARCHAR, lost VARCHAR, goals_for VARCHAR) | What is the total number of Points 1, when Lost is less than 20, and when Goals For is greater than 92? |
SELECT COUNT(position) FROM table_name_51 WHERE played < 46 | CREATE TABLE table_name_51 (position VARCHAR, played INTEGER) | What is the total number of Position, when Played is less than 46? |
SELECT location FROM table_name_4 WHERE frequency = "102.5 fm" | CREATE TABLE table_name_4 (location VARCHAR, frequency VARCHAR) | Which Location has a Frequency of 102.5 fm? |
SELECT call_sign FROM table_name_26 WHERE frequency = "102.5 fm" | CREATE TABLE table_name_26 (call_sign VARCHAR, frequency VARCHAR) | Which Call sign has a Frequency of 102.5 fm? |
SELECT owner FROM table_name_18 WHERE name___format = "105.3 kool fm - hot adult contemporary" | CREATE TABLE table_name_18 (owner VARCHAR, name___format VARCHAR) | Which Owner has a Name / Format of 105.3 kool fm - hot adult contemporary? |
SELECT location FROM table_name_90 WHERE call_sign = "cjtw-fm" | CREATE TABLE table_name_90 (location VARCHAR, call_sign VARCHAR) | Which Location has a Call sign of cjtw-fm? |
SELECT frequency FROM table_name_77 WHERE owner = "rogers communications rogers radio" AND call_sign = "cikz-fm" | CREATE TABLE table_name_77 (frequency VARCHAR, owner VARCHAR, call_sign VARCHAR) | Which Frequency has an Owner of rogers communications rogers radio, and a Call sign of cikz-fm? |
SELECT MIN(laps) FROM table_name_1 WHERE rider = "vittorio iannuzzo" | CREATE TABLE table_name_1 (laps INTEGER, rider VARCHAR) | What is the lowest laps that Vittorio Iannuzzo completed? |
SELECT time FROM table_name_52 WHERE laps = 14 | CREATE TABLE table_name_52 (time VARCHAR, laps VARCHAR) | What is the total time that it took for the driver to finish 14 laps? |
SELECT grid FROM table_name_50 WHERE bike = "kawasaki zx-10r" AND rider = "régis laconi" | CREATE TABLE table_name_50 (grid VARCHAR, bike VARCHAR, rider VARCHAR) | What is the Grid of Régis Laconi's bike that is a Kawasaki zx-10r? |
SELECT bike FROM table_name_18 WHERE grid < 9 AND time = "+7.764" | CREATE TABLE table_name_18 (bike VARCHAR, grid VARCHAR, time VARCHAR) | What is the name of the bike that has a grid number smaller than 9 with a time of +7.764? |
SELECT elector FROM table_name_92 WHERE nationality = "french" AND elevated = "1288, may 16" | CREATE TABLE table_name_92 (elector VARCHAR, nationality VARCHAR, elevated VARCHAR) | Who was the French Elector Elevated on 1288, May 16? |
SELECT elector FROM table_name_13 WHERE title = "titulus s. cecilia" | CREATE TABLE table_name_13 (elector VARCHAR, title VARCHAR) | What Elector has the Title of Titulus S. Cecilia? |
SELECT nationality FROM table_name_5 WHERE title = "deacon of s. maria in via lata" | CREATE TABLE table_name_5 (nationality VARCHAR, title VARCHAR) | What is the Nationality of the Deacon of S. Maria in Via Lata? |
SELECT title FROM table_name_16 WHERE elector = "giovanni boccamazza" | CREATE TABLE table_name_16 (title VARCHAR, elector VARCHAR) | What is the Title of Elector Giovanni Boccamazza? |
SELECT record FROM table_name_33 WHERE date > 27 AND opponent = "st. louis blues" | CREATE TABLE table_name_33 (record VARCHAR, date VARCHAR, opponent VARCHAR) | What was the record for the date above 27 and an opponent of the St. Louis Blues? |
SELECT opponent FROM table_name_54 WHERE game > 31 AND date > 30 | CREATE TABLE table_name_54 (opponent VARCHAR, game VARCHAR, date VARCHAR) | Who was the opponent for a game over 31 and a date over 30? |
SELECT issue_date_s_ FROM table_name_54 WHERE artist = "jennifer lopez" | CREATE TABLE table_name_54 (issue_date_s_ VARCHAR, artist VARCHAR) | What date did the song by jennifer lopez get issued? |
SELECT COUNT(gold) FROM table_name_31 WHERE bronze = 2 AND rank = "61" AND total > 3 | CREATE TABLE table_name_31 (gold VARCHAR, total VARCHAR, bronze VARCHAR, rank VARCHAR) | What is the total number of gold medals when there were 2 bronze medals, a total of more than 3 medals and ranked 61? |
SELECT AVG(total) FROM table_name_26 WHERE bronze = 4 AND silver > 2 AND gold < 7 | CREATE TABLE table_name_26 (total INTEGER, gold VARCHAR, bronze VARCHAR, silver VARCHAR) | What is the average total number of medals when there were 4 bronze, more than 2 silver, and less than 7 gold medals? |
SELECT MIN(episode) FROM table_name_31 WHERE original_airdate = "8 june 2008" | CREATE TABLE table_name_31 (episode INTEGER, original_airdate VARCHAR) | What is the lowest episode number with an original airdate on 8 June 2008? |
SELECT no_4 FROM table_name_38 WHERE no_9 = "natalie" | CREATE TABLE table_name_38 (no_4 VARCHAR, no_9 VARCHAR) | Who was number 4 when Natalie was number 9? |
SELECT no_7 FROM table_name_16 WHERE no_5 = "olivia" AND no_2 = "emma" | CREATE TABLE table_name_16 (no_7 VARCHAR, no_5 VARCHAR, no_2 VARCHAR) | Who was number 7 when Olivia was number 5 and Emma was number 2? |
SELECT no_5 FROM table_name_76 WHERE no_8 = "chloe" AND no_2 = "olivia" AND no_1 = "emma" AND no_4 = "ava" | CREATE TABLE table_name_76 (no_5 VARCHAR, no_4 VARCHAR, no_1 VARCHAR, no_8 VARCHAR, no_2 VARCHAR) | When Chloe was number 8, Olivia was number 2, Emma was number 1, and Ava was number 4, who was number 5? |
SELECT platform FROM table_name_44 WHERE company = "surfstats software" | CREATE TABLE table_name_44 (platform VARCHAR, company VARCHAR) | What platform is the company Surfstats Software? |
SELECT price_in_usd FROM table_name_79 WHERE company = "tealeaf" | CREATE TABLE table_name_79 (price_in_usd VARCHAR, company VARCHAR) | What is the USD price for Tealeaf? |
SELECT platform FROM table_name_53 WHERE latest_stable_release = "5.0.3" | CREATE TABLE table_name_53 (platform VARCHAR, latest_stable_release VARCHAR) | What is the platform for the latest release 5.0.3? |
SELECT platform FROM table_name_28 WHERE latest_stable_release = "8.4" | CREATE TABLE table_name_28 (platform VARCHAR, latest_stable_release VARCHAR) | What is the platform for the latest release 8.4? |
Subsets and Splits
SQL Console for knowrohit07/know_sql
Finds questions in the dataset that contain the word 'god', providing a basic filtered view without much analytical insight.