answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT high_rebounds FROM table_23286112_12 WHERE game = 2
|
CREATE TABLE table_23286112_12 (high_rebounds VARCHAR, game VARCHAR)
|
Who had the highest rebounds in game 2?
|
SELECT date FROM table_23286112_12 WHERE series = "0-2"
|
CREATE TABLE table_23286112_12 (date VARCHAR, series VARCHAR)
|
What date was the series 0-2?
|
SELECT series FROM table_23286112_12 WHERE date = "April 18"
|
CREATE TABLE table_23286112_12 (series VARCHAR, date VARCHAR)
|
Which series were played on April 18?
|
SELECT series FROM table_23286158_11 WHERE high_rebounds = "Marcus Camby (11)"
|
CREATE TABLE table_23286158_11 (series VARCHAR, high_rebounds VARCHAR)
|
What series had high rebounds with Marcus Camby (11)?
|
SELECT series FROM table_23286158_11 WHERE game = 5
|
CREATE TABLE table_23286158_11 (series VARCHAR, game VARCHAR)
|
What was the series where the game was 5?
|
SELECT score FROM table_23286158_11 WHERE high_points = "Andre Miller (31)"
|
CREATE TABLE table_23286158_11 (score VARCHAR, high_points VARCHAR)
|
What is the score when high points were Andre Miller (31)?
|
SELECT score FROM table_23286158_11 WHERE game = 3
|
CREATE TABLE table_23286158_11 (score VARCHAR, game VARCHAR)
|
What is the score in game 3?
|
SELECT high_assists FROM table_23286158_10 WHERE high_rebounds = "Marcus Camby (15)"
|
CREATE TABLE table_23286158_10 (high_assists VARCHAR, high_rebounds VARCHAR)
|
When marcus camby (15) has the highest amount of rebounds who has the highest amount of assists?
|
SELECT high_points FROM table_23286158_10 WHERE record = "48-30"
|
CREATE TABLE table_23286158_10 (high_points VARCHAR, record VARCHAR)
|
When 48-30 is the record who has the highest amount of points?
|
SELECT COUNT(location_attendance) FROM table_23286158_10 WHERE high_assists = "Brandon Roy (6)" AND game = 78
|
CREATE TABLE table_23286158_10 (location_attendance VARCHAR, high_assists VARCHAR, game VARCHAR)
|
When 78 is the game and brandon roy (6) has the highest amount of assists how many locations/attendances are there?
|
SELECT date FROM table_23286158_10 WHERE high_rebounds = "Marcus Camby (15)"
|
CREATE TABLE table_23286158_10 (date VARCHAR, high_rebounds VARCHAR)
|
When marcus camby (15) has the highest amount of rebounds what is the date?
|
SELECT date FROM table_23286158_7 WHERE team = "Cleveland"
|
CREATE TABLE table_23286158_7 (date VARCHAR, team VARCHAR)
|
When did the Portland Trail Blazers play against Cleveland?
|
SELECT COUNT(title) FROM table_23287683_1 WHERE directed_by = "Sarah Pia Anderson"
|
CREATE TABLE table_23287683_1 (title VARCHAR, directed_by VARCHAR)
|
How many episodes were directed by Sarah Pia Anderson?
|
SELECT season__number FROM table_23287683_1 WHERE production_code = "5M21"
|
CREATE TABLE table_23287683_1 (season__number VARCHAR, production_code VARCHAR)
|
List all season numbers with production codes of 5m21.
|
SELECT COUNT(title) FROM table_23287683_1 WHERE series__number = 95
|
CREATE TABLE table_23287683_1 (title VARCHAR, series__number VARCHAR)
|
How many episodes had a series number of 95?
|
SELECT COUNT(season__number) FROM table_23286722_1 WHERE production_code = "3M17"
|
CREATE TABLE table_23286722_1 (season__number VARCHAR, production_code VARCHAR)
|
Name the total number of season for production code 3m17
|
SELECT directed_by FROM table_23286722_1 WHERE season__number = 2
|
CREATE TABLE table_23286722_1 (directed_by VARCHAR, season__number VARCHAR)
|
Name the directed by season # 2
|
SELECT MIN(series__number) FROM table_23286722_1 WHERE written_by = "David E. Kelley & Jill Goldsmith"
|
CREATE TABLE table_23286722_1 (series__number INTEGER, written_by VARCHAR)
|
Name least series number for writers david e. kelley & jill goldsmith
|
SELECT COUNT(first_broadcast) FROM table_23292220_13 WHERE episode = "12x03"
|
CREATE TABLE table_23292220_13 (first_broadcast VARCHAR, episode VARCHAR)
|
How many episodes are numbered 12x03?
|
SELECT jons_team FROM table_23292220_13 WHERE seans_team = "Matthew Crosby and Kimberly Wyatt"
|
CREATE TABLE table_23292220_13 (jons_team VARCHAR, seans_team VARCHAR)
|
Who was on Jon's team when Sean's team had Matthew Crosby and Kimberly Wyatt?
|
SELECT episode FROM table_23292220_13 WHERE seans_team = "Jack Dee and Stacey Solomon"
|
CREATE TABLE table_23292220_13 (episode VARCHAR, seans_team VARCHAR)
|
What was the episode that had Jack Dee and Stacey Solomon on Sean's team?
|
SELECT scores FROM table_23292220_13 WHERE seans_team = "Louie Spence and Joe Wilkinson"
|
CREATE TABLE table_23292220_13 (scores VARCHAR, seans_team VARCHAR)
|
What was the score in the episode that had Louie Spence and Joe Wilkinson on Sean's team?
|
SELECT scores FROM table_23292220_13 WHERE seans_team = "Russell Kane and Louise Redknapp"
|
CREATE TABLE table_23292220_13 (scores VARCHAR, seans_team VARCHAR)
|
What was the score on the episode that had Russell Kane and Louise Redknapp on Sean's team?
|
SELECT episode FROM table_23292220_3 WHERE seans_team = "Krishnan Guru-Murthy and Vic Reeves"
|
CREATE TABLE table_23292220_3 (episode VARCHAR, seans_team VARCHAR)
|
In which episode is Sean's team made up of Krishnan Guru-Murthy and Vic Reeves?
|
SELECT first_broadcast FROM table_23292220_3 WHERE daves_team = "Dave Johns and Sally Lindsay"
|
CREATE TABLE table_23292220_3 (first_broadcast VARCHAR, daves_team VARCHAR)
|
What is the first broadcast date of the episode in which Dave's team is made up of Dave Johns and Sally Lindsay?
|
SELECT first_broadcast FROM table_23292220_3 WHERE seans_team = "Peter Serafinowicz and Johnny Vegas"
|
CREATE TABLE table_23292220_3 (first_broadcast VARCHAR, seans_team VARCHAR)
|
What was the first broadcast date of the episode in which Sean's team is made up of Peter Serafinowicz and Johnny Vegas?
|
SELECT COUNT(episode) FROM table_23292220_3 WHERE daves_team = "David Walliams and Louis Walsh"
|
CREATE TABLE table_23292220_3 (episode VARCHAR, daves_team VARCHAR)
|
In how many episodes was Dave's team made up of David Walliams and Louis Walsh?
|
SELECT episode FROM table_23292220_4 WHERE daves_team = "Boy George and Lee Mack"
|
CREATE TABLE table_23292220_4 (episode VARCHAR, daves_team VARCHAR)
|
Which episode has boy george and lee mack on dave's team?
|
SELECT COUNT(daves_team) FROM table_23292220_4 WHERE first_broadcast = "27 October 2006"
|
CREATE TABLE table_23292220_4 (daves_team VARCHAR, first_broadcast VARCHAR)
|
How many daves team entries are there on 27 october 2006?
|
SELECT episode FROM table_23292220_4 WHERE seans_team = "Ulrika Jonsson and Michael McIntyre"
|
CREATE TABLE table_23292220_4 (episode VARCHAR, seans_team VARCHAR)
|
Which episode has ulrika jonsson and michael mcintyre on sean's team?
|
SELECT scores FROM table_23292220_4 WHERE seans_team = "John Barrowman and Vic Reeves"
|
CREATE TABLE table_23292220_4 (scores VARCHAR, seans_team VARCHAR)
|
What was the score in the episode with john barrowman and vic reeves on sean's team?
|
SELECT first_broadcast FROM table_23292220_4 WHERE episode = "4x03"
|
CREATE TABLE table_23292220_4 (first_broadcast VARCHAR, episode VARCHAR)
|
What was the first broadcast date of episode 4x03?
|
SELECT first_broadcast FROM table_23292220_5 WHERE jasons_team = "Trisha Goddard and Glenn Wool"
|
CREATE TABLE table_23292220_5 (first_broadcast VARCHAR, jasons_team VARCHAR)
|
Name the first broadcast for trisha goddard and glenn wool
|
SELECT COUNT(scores) FROM table_23292220_5 WHERE episode = "5x06"
|
CREATE TABLE table_23292220_5 (scores VARCHAR, episode VARCHAR)
|
Name the number of scores for 5x06
|
SELECT first_broadcast FROM table_23292220_17 WHERE seans_team = "Tina Malone and Joe Wilkinson"
|
CREATE TABLE table_23292220_17 (first_broadcast VARCHAR, seans_team VARCHAR)
|
Name the first broadcast for tina malone and joe wilkinson
|
SELECT COUNT(jons_team) FROM table_23292220_17 WHERE episode = "15x10"
|
CREATE TABLE table_23292220_17 (jons_team VARCHAR, episode VARCHAR)
|
Name the number of jons team for 15x10
|
SELECT scores FROM table_23292220_17 WHERE seans_team = "Chris Ramsey and Carol Vorderman"
|
CREATE TABLE table_23292220_17 (scores VARCHAR, seans_team VARCHAR)
|
Name the scores for chris ramsey and carol vorderman
|
SELECT COUNT(jons_team) FROM table_23292220_17 WHERE episode = "15x07"
|
CREATE TABLE table_23292220_17 (jons_team VARCHAR, episode VARCHAR)
|
Name the total number of jons team for 15x07
|
SELECT jasons_team FROM table_23292220_6 WHERE episode = "6x02"
|
CREATE TABLE table_23292220_6 (jasons_team VARCHAR, episode VARCHAR)
|
Name all of Jason's teams that appeared on episode 6x02?
|
SELECT COUNT(episode) FROM table_23292220_6 WHERE seans_team = "Vanessa Feltz and Lee Mack"
|
CREATE TABLE table_23292220_6 (episode VARCHAR, seans_team VARCHAR)
|
In how many episodes were Vanessa Feltz and Lee Mack the team for Sean?
|
SELECT episode FROM table_23292220_6 WHERE jasons_team = "Duncan James and Johnny Vegas"
|
CREATE TABLE table_23292220_6 (episode VARCHAR, jasons_team VARCHAR)
|
Name the episode(s) that featured Duncan James and Johnny Vegas as Jason's team.
|
SELECT MAX(sf_round) FROM table_23293785_3 WHERE driver = "Duncan Tappy"
|
CREATE TABLE table_23293785_3 (sf_round INTEGER, driver VARCHAR)
|
What round does Duncan Tappy drive in?
|
SELECT MAX(race_total_pts_) FROM table_23293785_3 WHERE country = "England"
|
CREATE TABLE table_23293785_3 (race_total_pts_ INTEGER, country VARCHAR)
|
How many racing points did England get?
|
SELECT race_2_pts_ FROM table_23293785_3 WHERE race_1_pts_ = 12
|
CREATE TABLE table_23293785_3 (race_2_pts_ VARCHAR, race_1_pts_ VARCHAR)
|
How many are the Race 2 points when Race 1 was 12?
|
SELECT us_viewers__millions_ FROM table_23294081_11 WHERE no = 226
|
CREATE TABLE table_23294081_11 (us_viewers__millions_ VARCHAR, no VARCHAR)
|
How many millions of people in the US saw the episode number 226?
|
SELECT MAX(no) FROM table_23294081_11
|
CREATE TABLE table_23294081_11 (no INTEGER)
|
What is the highest episode number?
|
SELECT performer_1 FROM table_23294081_11 WHERE performer_2 = "Heather Anne Campbell" AND _number = 7
|
CREATE TABLE table_23294081_11 (performer_1 VARCHAR, performer_2 VARCHAR, _number VARCHAR)
|
Who was performer 1 in the episode number 7 where Heather Anne Campbell was performer 2?
|
SELECT MIN(_number) FROM table_23294081_11 WHERE performer_2 = "Heather Anne Campbell" AND us_viewers__millions_ = "2.99"
|
CREATE TABLE table_23294081_11 (_number INTEGER, performer_2 VARCHAR, us_viewers__millions_ VARCHAR)
|
What's the number of the episode seen by 2.99 millions of people in the US, where performer 2 was Heather Anne Campbell?
|
SELECT episode FROM table_23292220_7 WHERE seans_team = "Vic Reeves and Claudia Winkleman"
|
CREATE TABLE table_23292220_7 (episode VARCHAR, seans_team VARCHAR)
|
Name the episode for vic reeves and claudia winkleman
|
SELECT COUNT(scores) FROM table_23292220_7 WHERE episode = "7x05"
|
CREATE TABLE table_23292220_7 (scores VARCHAR, episode VARCHAR)
|
Name the number of scores for episode 7x05
|
SELECT seans_team FROM table_23292220_7 WHERE first_broadcast = "13 November 2008"
|
CREATE TABLE table_23292220_7 (seans_team VARCHAR, first_broadcast VARCHAR)
|
Name the seans team being 13 november 2008
|
SELECT COUNT(seans_team) FROM table_23292220_7 WHERE episode = "7x04"
|
CREATE TABLE table_23292220_7 (seans_team VARCHAR, episode VARCHAR)
|
Name the total number of seans team being 7x04
|
SELECT COUNT(scores) FROM table_23292220_7 WHERE episode = "7x10"
|
CREATE TABLE table_23292220_7 (scores VARCHAR, episode VARCHAR)
|
Name the total number of scores for 7x10
|
SELECT COUNT(date) FROM table_23293785_2 WHERE race_total_pts_ = 180
|
CREATE TABLE table_23293785_2 (date VARCHAR, race_total_pts_ VARCHAR)
|
How many dates have a total points for race of 180?
|
SELECT race_1_pts_ FROM table_23293785_2 WHERE race_total_pts_ = 180
|
CREATE TABLE table_23293785_2 (race_1_pts_ VARCHAR, race_total_pts_ VARCHAR)
|
What is every points value for race 1 if the total race points is 180?
|
SELECT MIN(race_total_pts_) FROM table_23293785_2 WHERE country = "Belgium"
|
CREATE TABLE table_23293785_2 (race_total_pts_ INTEGER, country VARCHAR)
|
What is the lowest number of total race points for the country of Belgium?
|
SELECT driver FROM table_23293785_2 WHERE location = "Estoril Circuit"
|
CREATE TABLE table_23293785_2 (driver VARCHAR, location VARCHAR)
|
Who is every driver for the location of Estoril Circuit?
|
SELECT MAX(sf_round) FROM table_23293785_2 WHERE country = "England"
|
CREATE TABLE table_23293785_2 (sf_round INTEGER, country VARCHAR)
|
What is the highest value for SF round for the country of England?
|
SELECT surface FROM table_23297_3 WHERE year = 2001
|
CREATE TABLE table_23297_3 (surface VARCHAR, year VARCHAR)
|
What is the surface for the year 2001?
|
SELECT score FROM table_23308178_4 WHERE date = "October 29"
|
CREATE TABLE table_23308178_4 (score VARCHAR, date VARCHAR)
|
What was the score on October 29?
|
SELECT COUNT(opponent) FROM table_23308178_4 WHERE record = "3-2-2"
|
CREATE TABLE table_23308178_4 (opponent VARCHAR, record VARCHAR)
|
How many opponents were there with the record of 3-2-2?
|
SELECT record FROM table_23308178_4 WHERE date = "October 17"
|
CREATE TABLE table_23308178_4 (record VARCHAR, date VARCHAR)
|
What was the record on October 17?
|
SELECT date FROM table_23308178_4 WHERE opponent = "New York Rangers"
|
CREATE TABLE table_23308178_4 (date VARCHAR, opponent VARCHAR)
|
What date did they play agains the New York Rangers?
|
SELECT MAX(points) FROM table_23308178_4 WHERE date = "October 27"
|
CREATE TABLE table_23308178_4 (points INTEGER, date VARCHAR)
|
How many points were there scored on October 27?
|
SELECT COUNT(score) FROM table_23308178_5 WHERE record = "10-3-4"
|
CREATE TABLE table_23308178_5 (score VARCHAR, record VARCHAR)
|
How many different scores are there for the game with 10-3-4 record?
|
SELECT date FROM table_23308178_5 WHERE record = "13-5-6"
|
CREATE TABLE table_23308178_5 (date VARCHAR, record VARCHAR)
|
When was the game with 13-5-6 record played?
|
SELECT MIN(points) FROM table_23308178_5
|
CREATE TABLE table_23308178_5 (points INTEGER)
|
What's the minimal number of points scored in any game?
|
SELECT COUNT(game) FROM table_23308178_5 WHERE opponent = "Florida Panthers" AND location = "Verizon Center"
|
CREATE TABLE table_23308178_5 (game VARCHAR, opponent VARCHAR, location VARCHAR)
|
How many different games against Florida Panthers were played in Verizon Center?
|
SELECT record FROM table_23308178_5 WHERE date = "November 7"
|
CREATE TABLE table_23308178_5 (record VARCHAR, date VARCHAR)
|
What was the record in the November 7 game?
|
SELECT COUNT(attendance) FROM table_23308178_9 WHERE record = "49-15-11"
|
CREATE TABLE table_23308178_9 (attendance VARCHAR, record VARCHAR)
|
How many times was there a record of 49-15-11?
|
SELECT COUNT(score) FROM table_23308178_9 WHERE date = "March 6"
|
CREATE TABLE table_23308178_9 (score VARCHAR, date VARCHAR)
|
How many scores had a date of March 6?
|
SELECT opponent FROM table_23314951_4 WHERE date = "7-21-2006"
|
CREATE TABLE table_23314951_4 (opponent VARCHAR, date VARCHAR)
|
If the date is 7-21-2006, who was the opponent?
|
SELECT against FROM table_23314951_4 WHERE opponent = "Kristian Pless"
|
CREATE TABLE table_23314951_4 (against VARCHAR, opponent VARCHAR)
|
If the opponent is Kristian Pless, who was it against?
|
SELECT winning_team FROM table_23315271_2 WHERE winning_driver = "Max Busnelli"
|
CREATE TABLE table_23315271_2 (winning_team VARCHAR, winning_driver VARCHAR)
|
Who is the winning team when max busnelli is the winning driver?
|
SELECT location FROM table_23315271_2 WHERE circuit = "ACI Vallelunga circuit"
|
CREATE TABLE table_23315271_2 (location VARCHAR, circuit VARCHAR)
|
In which location is aci vallelunga circuit?
|
SELECT pole_position FROM table_23315271_2 WHERE circuit = "Misano World circuit"
|
CREATE TABLE table_23315271_2 (pole_position VARCHAR, circuit VARCHAR)
|
Who held the pole position in misano world circuit?
|
SELECT score FROM table_23308178_7 WHERE opponent = "Detroit Red Wings"
|
CREATE TABLE table_23308178_7 (score VARCHAR, opponent VARCHAR)
|
List the results for all games which involved the detroit red wings.
|
SELECT MAX(points) FROM table_23308178_7 WHERE record = "28-12-6"
|
CREATE TABLE table_23308178_7 (points INTEGER, record VARCHAR)
|
Calculate the highest points where the win,loss, tie ratio is 28-12-6
|
SELECT record FROM table_23308178_7 WHERE opponent = "Montreal Canadiens"
|
CREATE TABLE table_23308178_7 (record VARCHAR, opponent VARCHAR)
|
what are the previous performance details for games involving the montreal canadiens?
|
SELECT year FROM table_2331549_1 WHERE third_place = "Michigan State University"
|
CREATE TABLE table_2331549_1 (year VARCHAR, third_place VARCHAR)
|
Which years did Michigan state university come in third place?
|
SELECT champion FROM table_2331549_1 WHERE third_place = "Michigan Technological University"
|
CREATE TABLE table_2331549_1 (champion VARCHAR, third_place VARCHAR)
|
Who were the champions in years where michigan technological university was in third place?
|
SELECT host_city FROM table_2331549_1 WHERE host_school = "École de technologie supérieure"
|
CREATE TABLE table_2331549_1 (host_city VARCHAR, host_school VARCHAR)
|
What was the host city in years where the host school was école de technologie supérieure?
|
SELECT second_place FROM table_2331549_1 WHERE champion = "South Dakota School of Mines & Technology"
|
CREATE TABLE table_2331549_1 (second_place VARCHAR, champion VARCHAR)
|
Who came in second place when the champion was south dakota school of mines & technology?
|
SELECT COUNT(innings) FROM table_23316034_16 WHERE average = "45.65"
|
CREATE TABLE table_23316034_16 (innings VARCHAR, average VARCHAR)
|
If the average is 45.65, what is the total number of innings?
|
SELECT player FROM table_23316034_16 WHERE innings = 82
|
CREATE TABLE table_23316034_16 (player VARCHAR, innings VARCHAR)
|
What is the name of the player if the innings is 82?
|
SELECT average FROM table_23316034_16 WHERE innings = 68
|
CREATE TABLE table_23316034_16 (average VARCHAR, innings VARCHAR)
|
If the innings is 68, what is the average?
|
SELECT MAX(matches) FROM table_23316034_16 WHERE runs = 5028
|
CREATE TABLE table_23316034_16 (matches INTEGER, runs VARCHAR)
|
If the runs is 5028, what is the matches maximum?
|
SELECT MIN(dismissals) FROM table_23316034_23 WHERE player = "Sammy Carter"
|
CREATE TABLE table_23316034_23 (dismissals INTEGER, player VARCHAR)
|
Name the least dismissals for sammy carter
|
SELECT COUNT(dismissals) FROM table_23316034_23 WHERE player = "Adam Gilchrist"
|
CREATE TABLE table_23316034_23 (dismissals VARCHAR, player VARCHAR)
|
Name the number of dismissals for adam gilchrist
|
SELECT MAX(dismissals) FROM table_23316034_23 WHERE rank = 4
|
CREATE TABLE table_23316034_23 (dismissals INTEGER, rank VARCHAR)
|
Name the least dismissals for 4 rank
|
SELECT top_10 FROM table_2333416_2 WHERE winnings = "$17,695"
|
CREATE TABLE table_2333416_2 (top_10 VARCHAR, winnings VARCHAR)
|
How many top 10 finishes did Ken Bouchard get in the year he won $17,695?
|
SELECT year FROM table_2333416_2 WHERE position = "78th"
|
CREATE TABLE table_2333416_2 (year VARCHAR, position VARCHAR)
|
What year did Ken Bouchard finish in 78th place?
|
SELECT COUNT(year) FROM table_2333416_2 WHERE position = "38th"
|
CREATE TABLE table_2333416_2 (year VARCHAR, position VARCHAR)
|
How many seasons did Ken Bouchard finish in 38th place?
|
SELECT MIN(wins) FROM table_2333416_2
|
CREATE TABLE table_2333416_2 (wins INTEGER)
|
What is the greatest number of wins Ken Bouchard had in a season?
|
SELECT COUNT(races) FROM table_23338693_1 WHERE season = 2012 AND podiums = 0
|
CREATE TABLE table_23338693_1 (races VARCHAR, season VARCHAR, podiums VARCHAR)
|
How many races in 2012 season have 0 podiums?
|
SELECT COUNT(season) FROM table_23338693_1 WHERE team = "Motopark"
|
CREATE TABLE table_23338693_1 (season VARCHAR, team VARCHAR)
|
How many seasons have motopark team?
|
SELECT team FROM table_23338693_1 WHERE position = "NC" AND season = 2010
|
CREATE TABLE table_23338693_1 (team VARCHAR, position VARCHAR, season VARCHAR)
|
Which team has nc position for 2010 season?
|
SELECT points FROM table_23338693_1 WHERE series = "British Formula Renault 2.0 Winter Cup" AND f_laps = 0
|
CREATE TABLE table_23338693_1 (points VARCHAR, series VARCHAR, f_laps VARCHAR)
|
How many points have a series of british formula renault 2.0 winter cup and f/laps of 0?
|
SELECT MAX(minutes) FROM table_23346303_5 WHERE rebounds = 0
|
CREATE TABLE table_23346303_5 (minutes INTEGER, rebounds VARCHAR)
|
If the amount of rebounds is 0, what is the maximum minutes?
|
SELECT COUNT(points) FROM table_23346303_5 WHERE assists = 7
|
CREATE TABLE table_23346303_5 (points VARCHAR, assists VARCHAR)
|
What is the points total number if the assists is 7?
|
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.