output
stringlengths
18
557
instruction
stringlengths
22
540
SELECT years_in_orlando FROM table_name_64 WHERE nationality = "united states" AND school_club_team = "concord hs"
CREATE TABLE table_name_64 (years_in_orlando VARCHAR, nationality VARCHAR, school_club_team VARCHAR), What years in Orlando have the United States as the nationality, with concord hs as the school/club team?
SELECT player FROM table_name_12 WHERE school_club_team = "montana"
CREATE TABLE table_name_12 (player VARCHAR, school_club_team VARCHAR), Which player has montana as the school/club team?
SELECT nationality FROM table_name_70 WHERE player = "jon koncak"
CREATE TABLE table_name_70 (nationality VARCHAR, player VARCHAR), What nationality has jon koncak as the player?
SELECT years_in_orlando FROM table_name_16 WHERE nationality = "united states" AND school_club_team = "montana"
CREATE TABLE table_name_16 (years_in_orlando VARCHAR, nationality VARCHAR, school_club_team VARCHAR), What years in orlando have the United States as the nationality, and montana as the school/club team?
SELECT school_club_team FROM table_name_25 WHERE player = "tim kempton"
CREATE TABLE table_name_25 (school_club_team VARCHAR, player VARCHAR), What school/club team has tim kempton as the player?
SELECT attendance FROM table_name_66 WHERE opponent = "pittsburgh steelers"
CREATE TABLE table_name_66 (attendance VARCHAR, opponent VARCHAR), In the game where they played the Pittsburgh Steelers, what was the attendance?
SELECT opponent FROM table_name_49 WHERE week < 9 AND attendance = "61,626"
CREATE TABLE table_name_49 (opponent VARCHAR, week VARCHAR, attendance VARCHAR), In the game on or before week 9, who was the opponent when the attendance was 61,626?
SELECT result FROM table_name_65 WHERE date = "november 20, 1994"
CREATE TABLE table_name_65 (result VARCHAR, date VARCHAR), On November 20, 1994, what was the result of the game?
SELECT team__number2 FROM table_name_31 WHERE team__number1 = "deport"
CREATE TABLE table_name_31 (team__number2 VARCHAR, team__number1 VARCHAR), What is the team #2 with Deport as team #1?
SELECT 2 AS nd_leg FROM table_name_18 WHERE team__number2 = "junior"
CREATE TABLE table_name_18 (team__number2 VARCHAR), What is the 2nd leg for the team #2 junior?
SELECT 1 AS st_leg FROM table_name_5 WHERE team__number2 = "junior"
CREATE TABLE table_name_5 (team__number2 VARCHAR), What is the 1st leg with a junior team #2?
SELECT AVG(rank) FROM table_name_9 WHERE bronze < 0
CREATE TABLE table_name_9 (rank INTEGER, bronze INTEGER), What is the rank with 0 bronze?
SELECT COUNT(total) FROM table_name_46 WHERE gold > 2
CREATE TABLE table_name_46 (total VARCHAR, gold INTEGER), What is the total where the gold is larger than 2?
SELECT MIN(gold) FROM table_name_42 WHERE silver = 2 AND total < 3
CREATE TABLE table_name_42 (gold INTEGER, silver VARCHAR, total VARCHAR), What is the smallest number of gold where the total is less than 3 and the silver count is 2?
SELECT COUNT(against) FROM table_name_26 WHERE drawn < 5 AND lost < 6 AND points > 36
CREATE TABLE table_name_26 (against VARCHAR, points VARCHAR, drawn VARCHAR, lost VARCHAR), Which Against has a Drawn smaller than 5, and a Lost smaller than 6, and a Points larger than 36?
SELECT AVG(played) FROM table_name_18 WHERE lost > 9 AND points < 15 AND position < 12 AND drawn < 2
CREATE TABLE table_name_18 (played INTEGER, drawn VARCHAR, position VARCHAR, lost VARCHAR, points VARCHAR), Which Played has a Lost larger than 9, and a Points smaller than 15, and a Position smaller than 12, and a Drawn smaller than 2?
SELECT COUNT(week) FROM table_name_96 WHERE date = "october 31, 1954"
CREATE TABLE table_name_96 (week VARCHAR, date VARCHAR), How many weeks have october 31, 1954 as the date?
SELECT party FROM table_name_61 WHERE took_office > 1993 AND senator = "michael galloway"
CREATE TABLE table_name_61 (party VARCHAR, took_office VARCHAR, senator VARCHAR), What party took office after 1993 with Senator Michael Galloway?
SELECT took_office FROM table_name_17 WHERE senator = "ken armbrister"
CREATE TABLE table_name_17 (took_office VARCHAR, senator VARCHAR), What year did Senator Ken Armbrister take office?
SELECT SUM(bronze) FROM table_name_91 WHERE total > 27
CREATE TABLE table_name_91 (bronze INTEGER, total INTEGER), What is the sum of Bronze when the total is more than 27?
SELECT COUNT(bronze) FROM table_name_93 WHERE gold > 1 AND nation = "total"
CREATE TABLE table_name_93 (bronze VARCHAR, gold VARCHAR, nation VARCHAR), What is the total number of Bronze when gold is more than 1 and nation is total?
SELECT AVG(bronze) FROM table_name_1 WHERE rank = "3" AND total > 8
CREATE TABLE table_name_1 (bronze INTEGER, rank VARCHAR, total VARCHAR), What is the average Bronze for rank 3 and total is more than 8?
SELECT SUM(total) FROM table_name_46 WHERE rank = "2"
CREATE TABLE table_name_46 (total INTEGER, rank VARCHAR), What is the sum of Total when rank is 2?
SELECT nation FROM table_name_62 WHERE total < 27 AND gold < 1 AND bronze > 1
CREATE TABLE table_name_62 (nation VARCHAR, bronze VARCHAR, total VARCHAR, gold VARCHAR), What is the Nation when there is a total less than 27, gold is less than 1, and bronze is more than 1?
SELECT MIN(year_commissioned) FROM table_name_64 WHERE average_annual_output__million_kwh_ > 58 AND installed_capacity__megawatts_ = 20
CREATE TABLE table_name_64 (year_commissioned INTEGER, average_annual_output__million_kwh_ VARCHAR, installed_capacity__megawatts_ VARCHAR), What is the earliest Year commissioned wiht an Average annual output greater than 58 and Installed capacity of 20?
SELECT AVG(average_annual_output__million_kwh_) FROM table_name_12 WHERE name = "culligran" AND installed_capacity__megawatts_ < 19
CREATE TABLE table_name_12 (average_annual_output__million_kwh_ INTEGER, name VARCHAR, installed_capacity__megawatts_ VARCHAR), What is the Average annual output for Culligran power station with an Installed capacity less than 19?
SELECT AVG(year_commissioned) FROM table_name_58 WHERE gross_head__metres_ < 18
CREATE TABLE table_name_58 (year_commissioned INTEGER, gross_head__metres_ INTEGER), What is the Year Commissioned of the power stationo with a Gross head of less than 18?
SELECT MAX(year_commissioned) FROM table_name_75 WHERE gross_head__metres_ = 60 AND average_annual_output__million_kwh_ < 59
CREATE TABLE table_name_75 (year_commissioned INTEGER, gross_head__metres_ VARCHAR, average_annual_output__million_kwh_ VARCHAR), What is the Year commissioned of the power station with a Gross head of 60 metres and Average annual output of less than 59 million KWh?
SELECT SUM(area__km²_) FROM table_name_19 WHERE density___km²_ > 462 AND official_website = "http://krishna.nic.in/"
CREATE TABLE table_name_19 (area__km²_ INTEGER, density___km²_ VARCHAR, official_website VARCHAR), What is the sum of the area values for districts having density over 462 and websites of http://krishna.nic.in/?
SELECT valvetrain FROM table_name_94 WHERE "engine_model" = "engine_model"
CREATE TABLE table_name_94 (valvetrain VARCHAR), What is the valvetrain with an engine model that is engine model?
SELECT position FROM table_name_36 WHERE school_club_team = "vanderbilt"
CREATE TABLE table_name_36 (position VARCHAR, school_club_team VARCHAR), What is the Position of the player from Vanderbilt?
SELECT school_club_team FROM table_name_80 WHERE player = "stephen thompson"
CREATE TABLE table_name_80 (school_club_team VARCHAR, player VARCHAR), What is Stephen Thompson's School/Club Team?
SELECT SUM(spike) FROM table_name_78 WHERE date_of_birth = "28.09.1981" AND block > 318
CREATE TABLE table_name_78 (spike INTEGER, date_of_birth VARCHAR, block VARCHAR), How many spikes have 28.09.1981 as the date of birth, with a block greater than 318?
SELECT dvd_release_date FROM table_name_74 WHERE season < 8 AND episodes < 13
CREATE TABLE table_name_74 (dvd_release_date VARCHAR, season VARCHAR, episodes VARCHAR), On what date was the DVD released for the season with fewer than 13 episodes that aired before season 8?
SELECT MAX(attendance) FROM table_name_14 WHERE match_no > 43 AND score = "2-4"
CREATE TABLE table_name_14 (attendance INTEGER, match_no VARCHAR, score VARCHAR), After Match 43, what was the Attendance of the Match with a Score of 2-4?
SELECT semi_finalists FROM table_name_25 WHERE runner_up = "gigi fernández natalia zvereva" AND week_of = "26 june 2 weeks"
CREATE TABLE table_name_25 (semi_finalists VARCHAR, runner_up VARCHAR, week_of VARCHAR), When the runner-up is listed as Gigi Fernández Natalia Zvereva and the week is 26 June 2 weeks, who are the semi finalists?
SELECT winner FROM table_name_71 WHERE week_of = "26 june 2 weeks" AND runner_up = "arantxa sánchez vicario"
CREATE TABLE table_name_71 (winner VARCHAR, week_of VARCHAR, runner_up VARCHAR), Who is the winner in the week listed as 26 June 2 weeks, when the runner-up is Arantxa Sánchez Vicario?
SELECT semi_finalists FROM table_name_43 WHERE week_of = "12 june" AND runner_up = "lori mcneil"
CREATE TABLE table_name_43 (semi_finalists VARCHAR, week_of VARCHAR, runner_up VARCHAR), Who are the semi finalists on the week of 12 june, when the runner-up is listed as Lori McNeil?
SELECT winner FROM table_name_79 WHERE tier = "tier iii"
CREATE TABLE table_name_79 (winner VARCHAR, tier VARCHAR), When the Tier is listed as tier iii, who is the Winner?
SELECT week_of FROM table_name_71 WHERE winner = "jana novotná arantxa sánchez vicario 5–7, 7–5, 6–4"
CREATE TABLE table_name_71 (week_of VARCHAR, winner VARCHAR), In which week is the winner listed as Jana Novotná Arantxa Sánchez Vicario 5–7, 7–5, 6–4?
SELECT player FROM table_name_16 WHERE years_in_orlando = "2005"
CREATE TABLE table_name_16 (player VARCHAR, years_in_orlando VARCHAR), Who was the Player that spent the Year 2005 in Orlando?
SELECT position FROM table_name_79 WHERE player = "britton johnsen"
CREATE TABLE table_name_79 (position VARCHAR, player VARCHAR), What was the Position of the Player, Britton Johnsen?
SELECT player FROM table_name_54 WHERE position = "guard-forward"
CREATE TABLE table_name_54 (player VARCHAR, position VARCHAR), Who was the Player that had the Position, guard-forward?
SELECT features FROM table_name_18 WHERE datacenter = "yes"
CREATE TABLE table_name_18 (features VARCHAR, datacenter VARCHAR), Which Features have Yes listed under Datacenter?
SELECT datacenter FROM table_name_62 WHERE standard = "no" AND itanium = "yes" AND features = "fault tolerant memory sync"
CREATE TABLE table_name_62 (datacenter VARCHAR, features VARCHAR, standard VARCHAR, itanium VARCHAR), What is the Datacenter for the Fault Tolerant Memory Sync Feature that has Yes for Itanium and No for Standard?
SELECT foundation FROM table_name_17 WHERE enterprise = "2"
CREATE TABLE table_name_17 (foundation VARCHAR, enterprise VARCHAR), Which Foundation has an Enterprise of 2?
SELECT datacenter FROM table_name_85 WHERE itanium = "yes" AND features = "memory modules: hot addition"
CREATE TABLE table_name_85 (datacenter VARCHAR, itanium VARCHAR, features VARCHAR), What is the Datacenter for the Memory modules: hot addition Feature that has Yes listed for Itanium?
SELECT enterprise FROM table_name_1 WHERE datacenter = "yes" AND features = "memory modules: hot replacement"
CREATE TABLE table_name_1 (enterprise VARCHAR, datacenter VARCHAR, features VARCHAR), What is the Enterprise for teh memory modules: hot replacement Feature that has a Datacenter of Yes?
SELECT datacenter FROM table_name_85 WHERE features = "network access connections: rras"
CREATE TABLE table_name_85 (datacenter VARCHAR, features VARCHAR), What Datacenter is listed against the network access connections: rras Feature?
SELECT l2_cache FROM table_name_87 WHERE multi_1 = "13.5x"
CREATE TABLE table_name_87 (l2_cache VARCHAR, multi_1 VARCHAR), What is the L2 cache with a 13.5x multi 1?
SELECT socket FROM table_name_34 WHERE release_date = "september 10, 2009" AND order_part_number = "amm300dbo22gq"
CREATE TABLE table_name_34 (socket VARCHAR, release_date VARCHAR, order_part_number VARCHAR), What is the socket with an order part number of amm300dbo22gq and a September 10, 2009 release date?
SELECT order_part_number FROM table_name_61 WHERE multi_1 = "12.5x"
CREATE TABLE table_name_61 (order_part_number VARCHAR, multi_1 VARCHAR), What is the order part number with a 12.5x multi 1?
SELECT frequency FROM table_name_17 WHERE order_part_number = "tmm500dbo22gq"
CREATE TABLE table_name_17 (frequency VARCHAR, order_part_number VARCHAR), What is the frequency of the tmm500dbo22gq order part number?
SELECT l2_cache FROM table_name_80 WHERE release_date = "september 10, 2009" AND fpu_width = "128-bit" AND multi_1 = "12x"
CREATE TABLE table_name_80 (l2_cache VARCHAR, multi_1 VARCHAR, release_date VARCHAR, fpu_width VARCHAR), What is the L2 cache with a release date on September 10, 2009, a 128-bit FPU width, and a 12x multi 1?
SELECT release_date FROM table_name_48 WHERE l2_cache = "2x 512 kb" AND multi_1 = "11x" AND fpu_width = "128-bit"
CREATE TABLE table_name_48 (release_date VARCHAR, fpu_width VARCHAR, l2_cache VARCHAR, multi_1 VARCHAR), What is the release date of the 2x 512 kb L2 cache with a 11x multi 1, and a FPU width of 128-bit?
SELECT player FROM table_name_56 WHERE college = "alberta"
CREATE TABLE table_name_56 (player VARCHAR, college VARCHAR), What Player has a College that is alberta?
SELECT college FROM table_name_79 WHERE player = "jermaine romans"
CREATE TABLE table_name_79 (college VARCHAR, player VARCHAR), What College has a Player that is jermaine romans?
SELECT score FROM table_name_14 WHERE date = "28 february 1953" AND tie_no = "3"
CREATE TABLE table_name_14 (score VARCHAR, date VARCHAR, tie_no VARCHAR), Which Score has a Date of 28 february 1953, and a Tie no of 3?
SELECT home_team FROM table_name_77 WHERE score = "0–1" AND away_team = "tottenham hotspur"
CREATE TABLE table_name_77 (home_team VARCHAR, score VARCHAR, away_team VARCHAR), Which Home team has a Score of 0–1, and an Away team of tottenham hotspur?
SELECT score FROM table_name_22 WHERE tie_no = "1"
CREATE TABLE table_name_22 (score VARCHAR, tie_no VARCHAR), Which Score has a Tie no of 1?
SELECT home_team FROM table_name_57 WHERE away_team = "everton"
CREATE TABLE table_name_57 (home_team VARCHAR, away_team VARCHAR), Which Home team has an Away team of everton?
SELECT tie_no FROM table_name_95 WHERE score = "0–1" AND date = "9 march 1953"
CREATE TABLE table_name_95 (tie_no VARCHAR, score VARCHAR, date VARCHAR), Which Tie no has a Score of 0–1, and a Date of 9 march 1953?
SELECT score FROM table_name_20 WHERE home_team = "aston villa"
CREATE TABLE table_name_20 (score VARCHAR, home_team VARCHAR), Which Score has a Home team of aston villa?
SELECT language FROM table_name_16 WHERE television_service = "canale aste"
CREATE TABLE table_name_16 (language VARCHAR, television_service VARCHAR), What is the Language for Canale Aste?
SELECT country FROM table_name_48 WHERE television_service = "reteconomy"
CREATE TABLE table_name_48 (country VARCHAR, television_service VARCHAR), What is the Country with Reteconomy as the Television service?
SELECT hdtv FROM table_name_84 WHERE content = "documentaries"
CREATE TABLE table_name_84 (hdtv VARCHAR, content VARCHAR), What is the HDTV when documentaries are the content?
SELECT language FROM table_name_86 WHERE television_service = "reteconomy"
CREATE TABLE table_name_86 (language VARCHAR, television_service VARCHAR), What is the Language when the Reteconomy is the television service?
SELECT hdtv FROM table_name_77 WHERE television_service = "rai nettuno sat uno"
CREATE TABLE table_name_77 (hdtv VARCHAR, television_service VARCHAR), What is the HDTV for the Rai Nettuno Sat Uno Television service?
SELECT MIN(week) FROM table_name_93 WHERE result = "l 13–10" AND date = "november 30, 1975" AND attendance > 44 OFFSET 982
CREATE TABLE table_name_93 (week INTEGER, attendance VARCHAR, result VARCHAR, date VARCHAR), What is the lowest Week when the result was l 13–10, November 30, 1975, with more than 44,982 people in attendance?
SELECT MAX(week) FROM table_name_93 WHERE opponent = "los angeles rams" AND attendance > 37 OFFSET 382
CREATE TABLE table_name_93 (week INTEGER, opponent VARCHAR, attendance VARCHAR), What is the highest Week when the opponent was the los angeles rams, with more than 37,382 in Attendance?
SELECT MAX(week) FROM table_name_54 WHERE opponent = "kansas city chiefs" AND attendance > 26 OFFSET 469
CREATE TABLE table_name_54 (week INTEGER, opponent VARCHAR, attendance VARCHAR), What is the highest Week when the opponent was kansas city chiefs, with more than 26,469 in attendance?
SELECT MIN(week) FROM table_name_19 WHERE result = "l 6–0"
CREATE TABLE table_name_19 (week INTEGER, result VARCHAR), What is the lowest Week when the result was l 6–0?
SELECT AVG(week) FROM table_name_83 WHERE result = "w 28–20" AND attendance > 46 OFFSET 888
CREATE TABLE table_name_83 (week INTEGER, result VARCHAR, attendance VARCHAR), What is the average Week when the result was w 28–20, and there were more than 46,888 in attendance?
SELECT MIN(overs) FROM table_name_61 WHERE runs = 18
CREATE TABLE table_name_61 (overs INTEGER, runs VARCHAR), What is the lowest Overs with a Run that is 18?
SELECT score FROM table_name_83 WHERE away_team = "charlton athletic"
CREATE TABLE table_name_83 (score VARCHAR, away_team VARCHAR), What score has charlton athletic as the away team?
SELECT home_team FROM table_name_45 WHERE away_team = "coventry city"
CREATE TABLE table_name_45 (home_team VARCHAR, away_team VARCHAR), What home team has coventry city as the away team?
SELECT AVG(pick) FROM table_name_7 WHERE round < 6 AND player = "kenneth green"
CREATE TABLE table_name_7 (pick INTEGER, round VARCHAR, player VARCHAR), What is the average Pick when the round was less than 6 for kenneth green?
SELECT AVG(goals) FROM table_name_68 WHERE matches < 228
CREATE TABLE table_name_68 (goals INTEGER, matches INTEGER), What average goals have matches less than 228?
SELECT SUM(goals) / matches FROM table_name_27 WHERE goals = 153 AND matches > 352
CREATE TABLE table_name_27 (matches VARCHAR, goals INTEGER), How many goals/matches have 153 as the goals with matches greater than 352?
SELECT MIN(goals) FROM table_name_37 WHERE goals / matches > 0.43 AND name = "joachim streich" AND matches > 378
CREATE TABLE table_name_37 (goals INTEGER, matches VARCHAR, name VARCHAR), What are the lowest goal that have goals/matches greater than 0.43 with joachim streich as the name and matches greater than 378?
SELECT years FROM table_name_70 WHERE goals < 229 AND matches = 440
CREATE TABLE table_name_70 (years VARCHAR, goals VARCHAR, matches VARCHAR), What years have goals less than 229, and 440 as matches?
SELECT winner FROM table_name_26 WHERE runner_up = "both teams awarded championship after a draw."
CREATE TABLE table_name_26 (winner VARCHAR, runner_up VARCHAR), What team was the winner when the runner-up shows both teams awarded championship after a draw.?
SELECT score FROM table_name_86 WHERE winner = "suntory sungoliath" AND attendance = "n/a"
CREATE TABLE table_name_86 (score VARCHAR, winner VARCHAR, attendance VARCHAR), What is the Score when the winner was suntory sungoliath, and the number attendance was n/a?
SELECT attendance FROM table_name_41 WHERE runner_up = "suntory sungoliath" AND title = "46th"
CREATE TABLE table_name_41 (attendance VARCHAR, runner_up VARCHAR, title VARCHAR), What is the Attendance number when the runner-up was suntory sungoliath, and a Title of 46th?
SELECT attendance FROM table_name_67 WHERE title = "44th"
CREATE TABLE table_name_67 (attendance VARCHAR, title VARCHAR), What is the Attendance number for the title of 44th?
SELECT title FROM table_name_37 WHERE winner = "suntory sungoliath" AND season = "2011-12 details"
CREATE TABLE table_name_37 (title VARCHAR, winner VARCHAR, season VARCHAR), What is the Title when the winner was suntory sungoliath, and a Season of 2011-12 details?
SELECT score FROM table_name_39 WHERE winner = "sanyo wild knights" AND runner_up = "suntory sungoliath"
CREATE TABLE table_name_39 (score VARCHAR, winner VARCHAR, runner_up VARCHAR), What is the Score when the winner was sanyo wild knights, and a Runner-up of suntory sungoliath?
SELECT position FROM table_name_22 WHERE pick__number < 278 AND player = "charles benson"
CREATE TABLE table_name_22 (position VARCHAR, pick__number VARCHAR, player VARCHAR), Which Position has a Pick # lower than 278 for Player Charles Benson?
SELECT player FROM table_name_31 WHERE pick__number < 223 AND position = "defensive end"
CREATE TABLE table_name_31 (player VARCHAR, pick__number VARCHAR, position VARCHAR), Which Player has a Pick # lower than 223 and a Defensive End Position?
SELECT COUNT(pick__number) FROM table_name_84 WHERE position = "running back"
CREATE TABLE table_name_84 (pick__number VARCHAR, position VARCHAR), If the Position is Running Back what is the Total number of Pick #?
SELECT college FROM table_name_63 WHERE pick__number > 195 AND player = "mark brown"
CREATE TABLE table_name_63 (college VARCHAR, pick__number VARCHAR, player VARCHAR), Which College has Player Mark Brown and a Pick # greater than 195?
SELECT AVG(position) FROM table_name_88 WHERE drawn < 0
CREATE TABLE table_name_88 (position INTEGER, drawn INTEGER), What was the average Position for which the amount Drawn was less than 0?
SELECT SUM(points) FROM table_name_75 WHERE difference = "13" AND lost > 3
CREATE TABLE table_name_75 (points INTEGER, difference VARCHAR, lost VARCHAR), What was the total number of Points when the value Difference was 13, and when the value Lost was greater than 3?
SELECT winner FROM table_name_1 WHERE winning_song = "kemenangan cinta"
CREATE TABLE table_name_1 (winner VARCHAR, winning_song VARCHAR), Who won with the song kemenangan cinta?
SELECT winning_song FROM table_name_32 WHERE debut_album = "in progress"
CREATE TABLE table_name_32 (winning_song VARCHAR, debut_album VARCHAR), Which winning song had a debut album in progress?
SELECT debut_album FROM table_name_93 WHERE season = "season 2 (2005)"
CREATE TABLE table_name_93 (debut_album VARCHAR, season VARCHAR), Which album debuted in season 2 (2005)?
SELECT WINNING_SONG(English AS Title) FROM table_name_7 WHERE winner = "aris runtuwene"
CREATE TABLE table_name_7 (English VARCHAR, winner VARCHAR), Which English winning song had the winner aris runtuwene?
SELECT WINNING_SONG(English AS Title) FROM table_name_65 WHERE winning_song = "aku tetap milikmu"
CREATE TABLE table_name_65 (English VARCHAR, winning_song VARCHAR), Which winning song was sung by aku tetap milikmu?
SELECT MAX(profits__billion_) AS $_ FROM table_name_14 WHERE company = "walmart"
CREATE TABLE table_name_14 (profits__billion_ INTEGER, company VARCHAR), Name the highest Profits (billion $) which has a Company of walmart?
SELECT SUM(assets__billion_) AS $_ FROM table_name_8 WHERE industry = "oil and gas" AND rank = 9 AND market_value__billion_$_ > 121.7
CREATE TABLE table_name_8 (assets__billion_ INTEGER, market_value__billion_$_ VARCHAR, industry VARCHAR, rank VARCHAR), How many Assets (billion $) has an Industry of oil and gas, and a Rank of 9, and a Market Value (billion $) larger than 121.7?