question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
What are the dates of death of those politicians whose date of birth 1938-08-30 30 august 1938? | CREATE TABLE table_25345002_1 (date_of_death VARCHAR, date_of_birth VARCHAR) | SELECT COUNT(date_of_death) FROM table_25345002_1 WHERE date_of_birth = "1938-08-30 30 August 1938" |
Which date was the show aired on the RTL Televizija network? | CREATE TABLE table_name_90 (date_aired VARCHAR, network VARCHAR) | SELECT date_aired FROM table_name_90 WHERE network = "rtl televizija" |
Which team got a Behind outcome and had an opponent of Brisbane Bears? | CREATE TABLE table_name_86 (team VARCHAR, outcome VARCHAR, opponent VARCHAR) | SELECT team FROM table_name_86 WHERE outcome = "behind" AND opponent = "brisbane bears" |
Where was Collingwood's away game played? | CREATE TABLE table_name_3 (venue VARCHAR, away_team VARCHAR) | SELECT venue FROM table_name_3 WHERE away_team = "collingwood" |
What is every entry for Tuesday August 23 if the entry for Wednesday August 24 is 22' 23.29 101.116mph? | CREATE TABLE table_30058355_7 (tues_23_aug VARCHAR, wed_24_aug VARCHAR) | SELECT tues_23_aug FROM table_30058355_7 WHERE wed_24_aug = "22' 23.29 101.116mph" |
What is the title of the production with a number of 1039? | CREATE TABLE table_name_83 (title VARCHAR, production_number VARCHAR) | SELECT title FROM table_name_83 WHERE production_number = "1039" |
Which Church has 27 stops? | CREATE TABLE table_name_71 (church VARCHAR, stops VARCHAR) | SELECT church FROM table_name_71 WHERE stops = "27" |
Name the winner for majorca | CREATE TABLE table_name_50 (winner VARCHAR, tournament VARCHAR) | SELECT winner FROM table_name_50 WHERE tournament = "majorca" |
When is Home of chicago black hawks has a Record of 0–1? | CREATE TABLE table_name_57 (date VARCHAR, home VARCHAR, record VARCHAR) | SELECT date FROM table_name_57 WHERE home = "chicago black hawks" AND record = "0–1" |
What Elector has the Place of Birth listed as Bavaria? | CREATE TABLE table_name_4 (elector VARCHAR, place_of_birth VARCHAR) | SELECT elector FROM table_name_4 WHERE place_of_birth = "bavaria" |
what's the score with date oct 1 | CREATE TABLE table_11621915_1 (score VARCHAR, date VARCHAR) | SELECT score FROM table_11621915_1 WHERE date = "Oct 1" |
What is the general classification with the winner being evgeni berzin? | CREATE TABLE table_12261926_2 (general_classification VARCHAR, winner VARCHAR) | SELECT COUNT(general_classification) FROM table_12261926_2 WHERE winner = "Evgeni Berzin" |
Which player had 9 blocks? | CREATE TABLE table_25353861_5 (player VARCHAR, blocks VARCHAR) | SELECT player FROM table_25353861_5 WHERE blocks = 9 |
Which Location has a Method of decision (unanimous), and Res of win x? | CREATE TABLE table_name_99 (location VARCHAR, method VARCHAR, res VARCHAR) | SELECT location FROM table_name_99 WHERE method = "decision (unanimous)" AND res = "win x" |
what was the achievement for the rival at scottish claymores | CREATE TABLE table_27893892_2 (team_record VARCHAR, opponent VARCHAR) | SELECT team_record FROM table_27893892_2 WHERE opponent = "at Scottish Claymores" |
Which game had a score of w 95-85? | CREATE TABLE table_27902171_7 (game INTEGER, score VARCHAR) | SELECT MIN(game) FROM table_27902171_7 WHERE score = "W 95-85" |
What is russ cochran's average margin? | CREATE TABLE table_name_30 (margin INTEGER, player VARCHAR) | SELECT AVG(margin) FROM table_name_30 WHERE player = "russ cochran" |
What is the total number of yr plyf with a G plyf less than 0? | CREATE TABLE table_name_56 (yr_plyf VARCHAR, g_plyf INTEGER) | SELECT COUNT(yr_plyf) FROM table_name_56 WHERE g_plyf < 0 |
4tab of commercial broadcaster Radio Tab broadcasts at what frequency? | CREATE TABLE table_name_75 (frequency VARCHAR, callsign VARCHAR, purpose VARCHAR, on_air_id VARCHAR) | SELECT frequency FROM table_name_75 WHERE purpose = "commercial" AND on_air_id = "radio tab" AND callsign = "4tab" |
Name the average with tally of 0-29 and total more than 29 | CREATE TABLE table_name_40 (average INTEGER, tally VARCHAR, total VARCHAR) | SELECT AVG(average) FROM table_name_40 WHERE tally = "0-29" AND total > 29 |
What is the Date of inauguration of the President with an Age at inauguration of 73years, 262days? | CREATE TABLE table_name_10 (date_of_inauguration VARCHAR, age_at_inauguration VARCHAR) | SELECT date_of_inauguration FROM table_name_10 WHERE age_at_inauguration = "73years, 262days" |
What is the highest RNA segment having a protein of vp2 and a base pair size over 2690? | CREATE TABLE table_name_20 (rna_segment__gene_ INTEGER, protein VARCHAR, size___s_base_pair__ VARCHAR) | SELECT MAX(rna_segment__gene_) FROM table_name_20 WHERE protein = "vp2" AND size___s_base_pair__ > 2690 |
What is the Station Name of the Arrival Starting Station? | CREATE TABLE table_name_63 (station_name VARCHAR, arrival VARCHAR) | SELECT station_name FROM table_name_63 WHERE arrival = "starting station" |
What was the constructor when there were 95 laps and a grid less than 15? | CREATE TABLE table_name_85 (constructor VARCHAR, grid VARCHAR, laps VARCHAR) | SELECT constructor FROM table_name_85 WHERE grid < 15 AND laps = 95 |
I want the constellation for declination for °45′ and right ascension of 07h58m | CREATE TABLE table_name_56 (constellation VARCHAR, declination___j2000__ VARCHAR, right_ascension___j2000__ VARCHAR) | SELECT constellation FROM table_name_56 WHERE declination___j2000__ = "°45′" AND right_ascension___j2000__ = "07h58m" |
What is the current freq for Frequency of 104.7? | CREATE TABLE table_name_67 (freq_currently VARCHAR, frequency VARCHAR) | SELECT freq_currently FROM table_name_67 WHERE frequency = "104.7" |
How many 2011 populations have a Cyrillic name of футог? | CREATE TABLE table_2562572_2 (population__2011_ VARCHAR, cyrillic_name VARCHAR) | SELECT COUNT(population__2011_) FROM table_2562572_2 WHERE cyrillic_name = "Футог" |
Who lost at schaefer stadium when the Winner was new england patriots, and a Date of october 18? | CREATE TABLE table_name_89 (loser VARCHAR, date VARCHAR, location VARCHAR, winner VARCHAR) | SELECT loser FROM table_name_89 WHERE location = "schaefer stadium" AND winner = "new england patriots" AND date = "october 18" |
Score of postponed (rain) rescheduled for June 27 had what loss? | CREATE TABLE table_name_32 (loss VARCHAR, score VARCHAR) | SELECT loss FROM table_name_32 WHERE score = "postponed (rain) rescheduled for june 27" |
How much money did Willie Klein take home from the game in which he had a to par score larger than 13? | CREATE TABLE table_name_5 (money___ INTEGER, player VARCHAR, to_par VARCHAR) | SELECT SUM(money___) AS $__ FROM table_name_5 WHERE player = "willie klein" AND to_par > 13 |
What was the undecided with Roy Barnes at 47%? | CREATE TABLE table_name_22 (undecided VARCHAR, roy_barnes VARCHAR) | SELECT undecided FROM table_name_22 WHERE roy_barnes = "47%" |
Which Pendle has a Burnley smaller than 0? | CREATE TABLE table_name_47 (pendle INTEGER, burnley INTEGER) | SELECT SUM(pendle) FROM table_name_47 WHERE burnley < 0 |
What loss has 16,458 as an Att.? | CREATE TABLE table_name_82 (loss VARCHAR, att VARCHAR) | SELECT loss FROM table_name_82 WHERE att = "16,458" |
Who directed the eposide that was watched by 1.95 million US viewers? | CREATE TABLE table_26736342_1 (directed_by VARCHAR, us_viewers__millions_ VARCHAR) | SELECT directed_by FROM table_26736342_1 WHERE us_viewers__millions_ = "1.95" |
Who had the most points in the game on March 7? | CREATE TABLE table_28768469_9 (high_points VARCHAR, date VARCHAR) | SELECT high_points FROM table_28768469_9 WHERE date = "March 7" |
If the team is Billy Ballew Motorsports, what is the race time? | CREATE TABLE table_2260452_1 (race_time VARCHAR, team VARCHAR) | SELECT race_time FROM table_2260452_1 WHERE team = "Billy Ballew Motorsports" |
What season ended on April 18? | CREATE TABLE table_22383603_1 (season VARCHAR, finish__incl_championship_ VARCHAR) | SELECT season FROM table_22383603_1 WHERE finish__incl_championship_ = "April 18" |
What is the amount of US open runner-up score? | CREATE TABLE table_22858557_1 (score_in_final VARCHAR, championship VARCHAR, outcome VARCHAR) | SELECT COUNT(score_in_final) FROM table_22858557_1 WHERE championship = "US Open" AND outcome = "Runner-up" |
What is the channel that is on digital terrestrial channel 10? | CREATE TABLE table_182410_10 (channel VARCHAR, digital_terrestrial_channel VARCHAR) | SELECT channel FROM table_182410_10 WHERE digital_terrestrial_channel = "10" |
On May 9 after Game 3, what was the Opponent? | CREATE TABLE table_name_66 (opponent VARCHAR, game VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_66 WHERE game > 3 AND date = "may 9" |
How many Bronzes have a Rank of 9, and a Silver larger than 2? | CREATE TABLE table_name_5 (bronze INTEGER, rank VARCHAR, silver VARCHAR) | SELECT SUM(bronze) FROM table_name_5 WHERE rank = "9" AND silver > 2 |
what is the venue where the scores are 15.13 (103) – 8.4 (52)? | CREATE TABLE table_1139835_1 (venue VARCHAR, scores VARCHAR) | SELECT venue FROM table_1139835_1 WHERE scores = "15.13 (103) – 8.4 (52)" |
What was the Score in Final of the Eckerd Open Tournament? | CREATE TABLE table_name_21 (score_in_final VARCHAR, tournament_name VARCHAR) | SELECT score_in_final FROM table_name_21 WHERE tournament_name = "eckerd open" |
Which class has a part 2 of halp warþ? | CREATE TABLE table_name_14 (class VARCHAR, part_2 VARCHAR) | SELECT class FROM table_name_14 WHERE part_2 = "halp warþ" |
What is the average word count with crs and subframes lesser than 2? | CREATE TABLE table_name_9 (word__number INTEGER, name VARCHAR, subframe__number VARCHAR) | SELECT AVG(word__number) FROM table_name_9 WHERE name = "crs" AND subframe__number < 2 |
What was the Record of the game in which the Trail Blazers was the visiting team? | CREATE TABLE table_name_24 (record VARCHAR, visitor VARCHAR) | SELECT record FROM table_name_24 WHERE visitor = "trail blazers" |
What was the score in the September 26 game? | CREATE TABLE table_name_76 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_76 WHERE date = "september 26" |
What is the highest episode number in which Jamie Oliver guest-hosted? | CREATE TABLE table_name_89 (episode_number INTEGER, guest_host VARCHAR) | SELECT MAX(episode_number) FROM table_name_89 WHERE guest_host = "jamie oliver" |
Which ordinary value has a Russian value of унция? | CREATE TABLE table_name_64 (ordinary_value VARCHAR, russian VARCHAR) | SELECT ordinary_value FROM table_name_64 WHERE russian = "унция" |
Which player's results were T6 in the PGA Ch., T4 in the Masters and T8 at the U.S. Open? | CREATE TABLE table_1506950_9 (player VARCHAR, us_open VARCHAR, pga_ch VARCHAR, masters VARCHAR) | SELECT player FROM table_1506950_9 WHERE pga_ch = "T6" AND masters = "T4" AND us_open = "T8" |
What is the Latin letter for the Tibetan of ས? | CREATE TABLE table_name_13 (latin VARCHAR, tibetan VARCHAR) | SELECT latin FROM table_name_13 WHERE tibetan = "ས" |
What U.S. Rap has life in the concrete jungle as the album? | CREATE TABLE table_name_15 (us_rap VARCHAR, album VARCHAR) | SELECT us_rap FROM table_name_15 WHERE album = "life in the concrete jungle" |
How many companies were created by Andy? | CREATE TABLE manufacturers (founder VARCHAR) | SELECT COUNT(*) FROM manufacturers WHERE founder = 'Andy' |
If the player is William Jakes, what are the total points? | CREATE TABLE table_27533947_1 (total_points INTEGER, players VARCHAR) | SELECT MIN(total_points) FROM table_27533947_1 WHERE players = "William Jakes" |
What is the 2nd verb for Khola? | CREATE TABLE table_name_34 (verb VARCHAR) | SELECT 2 AS __f_ FROM table_name_34 WHERE verb = "khola" |
What School Year has a Class AAAA of Dickinson? | CREATE TABLE table_name_61 (school_year VARCHAR, class_aAAA VARCHAR, dickinson VARCHAR) | SELECT school_year FROM table_name_61 WHERE class_aAAA = dickinson |
What is the total number of weeks where games were on November 5, 1973 and the attendance was larger than 49,220? | CREATE TABLE table_name_81 (week VARCHAR, date VARCHAR, attendance VARCHAR) | SELECT COUNT(week) FROM table_name_81 WHERE date = "november 5, 1973" AND attendance > 49 OFFSET 220 |
How many specimens does the SANT institution have? | CREATE TABLE table_name_1 (no_specimens INTEGER, abbr VARCHAR) | SELECT SUM(no_specimens) FROM table_name_1 WHERE abbr = "sant" |
How much Played has Drawn of 2, and a Position larger than 3, and Points smaller than 10? | CREATE TABLE table_name_1 (played VARCHAR, points VARCHAR, drawn VARCHAR, position VARCHAR) | SELECT COUNT(played) FROM table_name_1 WHERE drawn = 2 AND position > 3 AND points < 10 |
How many cup goals in the season with more than 5 league apps, 1 cup apps and fewer than 4 league goals? | CREATE TABLE table_name_78 (cup_goals INTEGER, league_goals VARCHAR, league_apps VARCHAR, cup_apps VARCHAR) | SELECT SUM(cup_goals) FROM table_name_78 WHERE league_apps > 5 AND cup_apps = 1 AND league_goals < 4 |
Which Original Broadway production has a Role of dr. victor von frankenstein? | CREATE TABLE table_name_1 (original_broadway_production VARCHAR, role VARCHAR) | SELECT original_broadway_production FROM table_name_1 WHERE role = "dr. victor von frankenstein" |
What is the highest top-25 with more than 9 top-10 but less than 29 events? | CREATE TABLE table_name_17 (top_25 INTEGER, top_10 VARCHAR, events VARCHAR) | SELECT MAX(top_25) FROM table_name_17 WHERE top_10 > 9 AND events < 29 |
What's the most in attendance when the Dolphins points were less than 24 and, they played the New England Patriots? | CREATE TABLE table_name_77 (attendance INTEGER, dolphins_points VARCHAR, opponent VARCHAR) | SELECT MAX(attendance) FROM table_name_77 WHERE dolphins_points < 24 AND opponent = "new england patriots" |
Name the band with frequency of 102.3 | CREATE TABLE table_name_88 (band VARCHAR, frequency VARCHAR) | SELECT band FROM table_name_88 WHERE frequency = "102.3" |
In what year did Tom Sneva win a race? | CREATE TABLE table_1405704_1 (season VARCHAR, winning_driver VARCHAR) | SELECT season FROM table_1405704_1 WHERE winning_driver = "Tom Sneva" |
Which record has a score of 7–6 (12)? | CREATE TABLE table_name_77 (record VARCHAR, score VARCHAR) | SELECT record FROM table_name_77 WHERE score = "7–6 (12)" |
What were the 2009 results that has 0 in 2010? | CREATE TABLE table_name_52 (Id VARCHAR) | SELECT 2009 FROM table_name_52 WHERE 2010 = "0" |
What is the id and name of the enzyme with most number of medicines that can interact as 'activator'? | CREATE TABLE medicine_enzyme_interaction (enzyme_id VARCHAR, interaction_type VARCHAR); CREATE TABLE enzyme (id VARCHAR, name VARCHAR) | SELECT T1.id, T1.name FROM enzyme AS T1 JOIN medicine_enzyme_interaction AS T2 ON T1.id = T2.enzyme_id WHERE T2.interaction_type = 'activitor' GROUP BY T1.id ORDER BY COUNT(*) DESC LIMIT 1 |
What is 2002 when 2009 is 54.0? | CREATE TABLE table_27146868_1 (Id VARCHAR) | SELECT 2002 FROM table_27146868_1 WHERE 2009 = "54.0" |
How many bronzes for nations ranked above 7, under 3 golds, and under 10 total medals? | CREATE TABLE table_name_78 (bronze VARCHAR, total VARCHAR, rank VARCHAR, gold VARCHAR) | SELECT COUNT(bronze) FROM table_name_78 WHERE rank < 7 AND gold < 3 AND total < 10 |
What is the total number of times points were listed when the distance was 41.05 metres? | CREATE TABLE table_26454128_9 (points VARCHAR, distance__metres_ VARCHAR) | SELECT COUNT(points) FROM table_26454128_9 WHERE distance__metres_ = "41.05" |
What different types are there with a CC License of by-nc-sa 2.5? | CREATE TABLE table_name_25 (type VARCHAR, cc_license VARCHAR) | SELECT type FROM table_name_25 WHERE cc_license = "by-nc-sa 2.5" |
Name the country where % change on year is 21 and value is less than 86 | CREATE TABLE table_name_12 (country VARCHAR, debt_as__percentage_of_value VARCHAR, _percentage_change_on_year VARCHAR) | SELECT country FROM table_name_12 WHERE debt_as__percentage_of_value < 86 AND _percentage_change_on_year = "21" |
What is the points that is more than 636 and has a value of 50? | CREATE TABLE table_name_82 (pts_ VARCHAR, b_ VARCHAR, reb_ VARCHAR, no_ VARCHAR, a_ VARCHAR) | SELECT pts_[b_] FROM table_name_82 WHERE reb_[b_] > 636 AND no_[a_] = "50" |
how many points (total 500) with pos being 11 | CREATE TABLE table_14460937_2 (points__total_500_ VARCHAR, pos VARCHAR) | SELECT COUNT(points__total_500_) FROM table_14460937_2 WHERE pos = 11 |
What position does Jamar Chaney play? | CREATE TABLE table_name_45 (position VARCHAR, name VARCHAR) | SELECT position FROM table_name_45 WHERE name = "jamar chaney" |
On what Date was Judy Rankin Runner(s)-up? | CREATE TABLE table_name_64 (date VARCHAR, runner_s__up VARCHAR) | SELECT date FROM table_name_64 WHERE runner_s__up = "judy rankin" |
Which film actors (actresses) played a role in more than 30 films? List his or her first name and last name. | CREATE TABLE film_actor (actor_id VARCHAR); CREATE TABLE actor (first_name VARCHAR, last_name VARCHAR, actor_id VARCHAR) | SELECT T2.first_name, T2.last_name FROM film_actor AS T1 JOIN actor AS T2 ON T1.actor_id = T2.actor_id GROUP BY T2.actor_id HAVING COUNT(*) > 30 |
How many results are there when the game was at the Atlanta-Fulton county stadium? | CREATE TABLE table_17848578_1 (result VARCHAR, game_site VARCHAR) | SELECT COUNT(result) FROM table_17848578_1 WHERE game_site = "Atlanta-Fulton County Stadium" |
What are the ids, names and FDA approval status of medicines in descending order of the number of enzymes that it can interact with. | CREATE TABLE medicine_enzyme_interaction (medicine_id VARCHAR); CREATE TABLE medicine (id VARCHAR, Name VARCHAR, FDA_approved VARCHAR) | SELECT T1.id, T1.Name, T1.FDA_approved FROM medicine AS T1 JOIN medicine_enzyme_interaction AS T2 ON T2.medicine_id = T1.id GROUP BY T1.id ORDER BY COUNT(*) DESC |
Who is the Director of the Filmography with Production Number of 11-14? | CREATE TABLE table_name_76 (director VARCHAR, production_number VARCHAR) | SELECT director FROM table_name_76 WHERE production_number = "11-14" |
What was the title of the episode directed by Rowan Woods? | CREATE TABLE table_23918997_1 (title VARCHAR, directed_by VARCHAR) | SELECT title FROM table_23918997_1 WHERE directed_by = "Rowan Woods" |
This constellation with a ranking of 51 has how many percentages on record? | CREATE TABLE table_177766_1 (per VARCHAR, rank VARCHAR) | SELECT COUNT(per) AS centage FROM table_177766_1 WHERE rank = 51 |
What class has a MHZ frequency under 103.1 licensed in morro bay, california? | CREATE TABLE table_name_4 (class VARCHAR, frequency_mhz VARCHAR, city_of_license VARCHAR) | SELECT class FROM table_name_4 WHERE frequency_mhz < 103.1 AND city_of_license = "morro bay, california" |
What is the cooper with an Ashmolean less than 21, and hahland smaller than 4? | CREATE TABLE table_name_43 (cooper VARCHAR, ashmolean VARCHAR, hahland VARCHAR) | SELECT cooper FROM table_name_43 WHERE ashmolean < 21 AND hahland < 4 |
When winner is the outcome what is the score? | CREATE TABLE table_24901152_2 (score VARCHAR, outcome VARCHAR) | SELECT score FROM table_24901152_2 WHERE outcome = "Winner" |
What is the average Grid, when Time is +45.855? | CREATE TABLE table_name_87 (grid INTEGER, time VARCHAR) | SELECT AVG(grid) FROM table_name_87 WHERE time = "+45.855" |
How many distinct characteristic names does the product "cumin" have? | CREATE TABLE CHARACTERISTICS (characteristic_name VARCHAR, characteristic_id VARCHAR); CREATE TABLE products (product_id VARCHAR, product_name VARCHAR); CREATE TABLE product_characteristics (product_id VARCHAR, characteristic_id VARCHAR) | SELECT COUNT(DISTINCT t3.characteristic_name) FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t1.product_name = "sesame" |
How many million viewers watched episodes prior to episode 2.0? | CREATE TABLE table_27927185_1 (viewers__millions_ VARCHAR, episode__number INTEGER) | SELECT viewers__millions_ FROM table_27927185_1 WHERE episode__number < 2.0 |
what is the to par when the player is roger maltbie? | CREATE TABLE table_name_75 (to_par VARCHAR, player VARCHAR) | SELECT to_par FROM table_name_75 WHERE player = "roger maltbie" |
What was the model that had years 2004-? | CREATE TABLE table_name_67 (model VARCHAR, years VARCHAR) | SELECT model FROM table_name_67 WHERE years = "2004-" |
How many saves were in the Georgia game, versus the Bulldogs, with a score of 7-6? | CREATE TABLE table_18025024_7 (save VARCHAR, score VARCHAR) | SELECT save FROM table_18025024_7 WHERE score = "7-6" |
What is the Score of the game earlier than 69 with a record of 4–56? | CREATE TABLE table_name_41 (score VARCHAR, game VARCHAR, record VARCHAR) | SELECT score FROM table_name_41 WHERE game < 69 AND record = "4–56" |
what is the minimum bush # with kerry # being 3938 | CREATE TABLE table_13606924_1 (bush__number INTEGER, kerry__number VARCHAR) | SELECT MIN(bush__number) FROM table_13606924_1 WHERE kerry__number = 3938 |
What is the number of losses for the team with a points difference of -25? | CREATE TABLE table_name_24 (lost VARCHAR, points_difference VARCHAR) | SELECT lost FROM table_name_24 WHERE points_difference = "-25" |
What is the highest number of people that attended a game at Moorabbin Oval? | CREATE TABLE table_name_54 (crowd INTEGER, venue VARCHAR) | SELECT MAX(crowd) FROM table_name_54 WHERE venue = "moorabbin oval" |
What was lane 4's time? | CREATE TABLE table_name_70 (time VARCHAR, lane VARCHAR) | SELECT time FROM table_name_70 WHERE lane = 4 |
Who is the current champion in the NECW Heavyweight Championship? | CREATE TABLE table_name_44 (current_champion_s_ VARCHAR, championship VARCHAR) | SELECT current_champion_s_ FROM table_name_44 WHERE championship = "necw heavyweight champion" |
Show the number of transaction types. | CREATE TABLE Financial_Transactions (transaction_type VARCHAR) | SELECT COUNT(DISTINCT transaction_type) FROM Financial_Transactions |
How many movie directors are there? | CREATE TABLE movie (director VARCHAR) | SELECT COUNT(DISTINCT director) FROM movie |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.