input stringlengths 191 7.13k | output stringlengths 19 578 |
|---|---|
Tables: basketball_match, university
Columns: basketball_match.Team_ID, basketball_match.School_ID, basketball_match.Team_Name, basketball_match.ACC_Regular_Season, basketball_match.ACC_Percent, basketball_match.ACC_Home, basketball_match.ACC_Road, basketball_match.All_Games, basketball_match.All_Games_Percent, basketb... | SELECT sum(enrollment) , min(enrollment) FROM university; |
Tables: basketball_match, university
Columns: basketball_match.Team_ID, basketball_match.School_ID, basketball_match.Team_Name, basketball_match.ACC_Regular_Season, basketball_match.ACC_Percent, basketball_match.ACC_Home, basketball_match.ACC_Road, basketball_match.All_Games, basketball_match.All_Games_Percent, basketb... | SELECT sum(enrollment) , affiliation FROM university GROUP BY affiliation; |
Tables: basketball_match, university
Columns: basketball_match.Team_ID, basketball_match.School_ID, basketball_match.Team_Name, basketball_match.ACC_Regular_Season, basketball_match.ACC_Percent, basketball_match.ACC_Home, basketball_match.ACC_Road, basketball_match.All_Games, basketball_match.All_Games_Percent, basketb... | SELECT sum(enrollment) , affiliation FROM university GROUP BY affiliation; |
Tables: basketball_match, university
Columns: basketball_match.Team_ID, basketball_match.School_ID, basketball_match.Team_Name, basketball_match.ACC_Regular_Season, basketball_match.ACC_Percent, basketball_match.ACC_Home, basketball_match.ACC_Road, basketball_match.All_Games, basketball_match.All_Games_Percent, basketb... | SELECT count(*) FROM university WHERE school_id NOT IN (SELECT school_id FROM basketball_match); |
Tables: basketball_match, university
Columns: basketball_match.Team_ID, basketball_match.School_ID, basketball_match.Team_Name, basketball_match.ACC_Regular_Season, basketball_match.ACC_Percent, basketball_match.ACC_Home, basketball_match.ACC_Road, basketball_match.All_Games, basketball_match.All_Games_Percent, basketb... | SELECT count(*) FROM university WHERE school_id NOT IN (SELECT school_id FROM basketball_match); |
Tables: basketball_match, university
Columns: basketball_match.Team_ID, basketball_match.School_ID, basketball_match.Team_Name, basketball_match.ACC_Regular_Season, basketball_match.ACC_Percent, basketball_match.ACC_Home, basketball_match.ACC_Road, basketball_match.All_Games, basketball_match.All_Games_Percent, basketb... | SELECT school FROM university WHERE founded > 1850 OR affiliation = 'Public'; |
Tables: basketball_match, university
Columns: basketball_match.Team_ID, basketball_match.School_ID, basketball_match.Team_Name, basketball_match.ACC_Regular_Season, basketball_match.ACC_Percent, basketball_match.ACC_Home, basketball_match.ACC_Road, basketball_match.All_Games, basketball_match.All_Games_Percent, basketb... | SELECT school FROM university WHERE founded > 1850 OR affiliation = 'Public'; |
Tables: basketball_match, university
Columns: basketball_match.Team_ID, basketball_match.School_ID, basketball_match.Team_Name, basketball_match.ACC_Regular_Season, basketball_match.ACC_Percent, basketball_match.ACC_Home, basketball_match.ACC_Road, basketball_match.All_Games, basketball_match.All_Games_Percent, basketb... | SELECT count(DISTINCT affiliation) FROM university; |
Tables: basketball_match, university
Columns: basketball_match.Team_ID, basketball_match.School_ID, basketball_match.Team_Name, basketball_match.ACC_Regular_Season, basketball_match.ACC_Percent, basketball_match.ACC_Home, basketball_match.ACC_Road, basketball_match.All_Games, basketball_match.All_Games_Percent, basketb... | SELECT count(DISTINCT affiliation) FROM university; |
Tables: basketball_match, university
Columns: basketball_match.Team_ID, basketball_match.School_ID, basketball_match.Team_Name, basketball_match.ACC_Regular_Season, basketball_match.ACC_Percent, basketball_match.ACC_Home, basketball_match.ACC_Road, basketball_match.All_Games, basketball_match.All_Games_Percent, basketb... | SELECT count(*) FROM university WHERE LOCATION LIKE "%NY%"; |
Tables: basketball_match, university
Columns: basketball_match.Team_ID, basketball_match.School_ID, basketball_match.Team_Name, basketball_match.ACC_Regular_Season, basketball_match.ACC_Percent, basketball_match.ACC_Home, basketball_match.ACC_Road, basketball_match.All_Games, basketball_match.All_Games_Percent, basketb... | SELECT count(*) FROM university WHERE LOCATION LIKE "%NY%"; |
Tables: basketball_match, university
Columns: basketball_match.Team_ID, basketball_match.School_ID, basketball_match.Team_Name, basketball_match.ACC_Regular_Season, basketball_match.ACC_Percent, basketball_match.ACC_Home, basketball_match.ACC_Road, basketball_match.All_Games, basketball_match.All_Games_Percent, basketb... | SELECT t2.team_name FROM university AS t1 JOIN basketball_match AS t2 ON t1.school_id = t2.school_id WHERE enrollment < (SELECT avg(enrollment) FROM university); |
Tables: basketball_match, university
Columns: basketball_match.Team_ID, basketball_match.School_ID, basketball_match.Team_Name, basketball_match.ACC_Regular_Season, basketball_match.ACC_Percent, basketball_match.ACC_Home, basketball_match.ACC_Road, basketball_match.All_Games, basketball_match.All_Games_Percent, basketb... | SELECT t2.team_name FROM university AS t1 JOIN basketball_match AS t2 ON t1.school_id = t2.school_id WHERE enrollment < (SELECT avg(enrollment) FROM university); |
Tables: basketball_match, university
Columns: basketball_match.Team_ID, basketball_match.School_ID, basketball_match.Team_Name, basketball_match.ACC_Regular_Season, basketball_match.ACC_Percent, basketball_match.ACC_Home, basketball_match.ACC_Road, basketball_match.All_Games, basketball_match.All_Games_Percent, basketb... | SELECT count(*) , affiliation FROM university WHERE enrollment > 20000 GROUP BY affiliation; |
Tables: basketball_match, university
Columns: basketball_match.Team_ID, basketball_match.School_ID, basketball_match.Team_Name, basketball_match.ACC_Regular_Season, basketball_match.ACC_Percent, basketball_match.ACC_Home, basketball_match.ACC_Road, basketball_match.All_Games, basketball_match.All_Games_Percent, basketb... | SELECT count(*) , affiliation FROM university WHERE enrollment > 20000 GROUP BY affiliation; |
Tables: basketball_match, university
Columns: basketball_match.Team_ID, basketball_match.School_ID, basketball_match.Team_Name, basketball_match.ACC_Regular_Season, basketball_match.ACC_Percent, basketball_match.ACC_Home, basketball_match.ACC_Road, basketball_match.All_Games, basketball_match.All_Games_Percent, basketb... | SELECT sum(Enrollment) , affiliation FROM university WHERE founded > 1850 GROUP BY affiliation; |
Tables: basketball_match, university
Columns: basketball_match.Team_ID, basketball_match.School_ID, basketball_match.Team_Name, basketball_match.ACC_Regular_Season, basketball_match.ACC_Percent, basketball_match.ACC_Home, basketball_match.ACC_Road, basketball_match.All_Games, basketball_match.All_Games_Percent, basketb... | SELECT sum(Enrollment) , affiliation FROM university WHERE founded > 1850 GROUP BY affiliation; |
Tables: basketball_match, university
Columns: basketball_match.Team_ID, basketball_match.School_ID, basketball_match.Team_Name, basketball_match.ACC_Regular_Season, basketball_match.ACC_Percent, basketball_match.ACC_Home, basketball_match.ACC_Road, basketball_match.All_Games, basketball_match.All_Games_Percent, basketb... | SELECT max(Enrollment) FROM university; |
Tables: basketball_match, university
Columns: basketball_match.Team_ID, basketball_match.School_ID, basketball_match.Team_Name, basketball_match.ACC_Regular_Season, basketball_match.ACC_Percent, basketball_match.ACC_Home, basketball_match.ACC_Road, basketball_match.All_Games, basketball_match.All_Games_Percent, basketb... | SELECT max(Enrollment) FROM university; |
Tables: basketball_match, university
Columns: basketball_match.Team_ID, basketball_match.School_ID, basketball_match.Team_Name, basketball_match.ACC_Regular_Season, basketball_match.ACC_Percent, basketball_match.ACC_Home, basketball_match.ACC_Road, basketball_match.All_Games, basketball_match.All_Games_Percent, basketb... | SELECT * FROM basketball_match; |
Tables: basketball_match, university
Columns: basketball_match.Team_ID, basketball_match.School_ID, basketball_match.Team_Name, basketball_match.ACC_Regular_Season, basketball_match.ACC_Percent, basketball_match.ACC_Home, basketball_match.ACC_Road, basketball_match.All_Games, basketball_match.All_Games_Percent, basketb... | SELECT * FROM basketball_match; |
Tables: basketball_match, university
Columns: basketball_match.Team_ID, basketball_match.School_ID, basketball_match.Team_Name, basketball_match.ACC_Regular_Season, basketball_match.ACC_Percent, basketball_match.ACC_Home, basketball_match.ACC_Road, basketball_match.All_Games, basketball_match.All_Games_Percent, basketb... | SELECT team_name FROM basketball_match ORDER BY All_Home DESC; |
Tables: basketball_match, university
Columns: basketball_match.Team_ID, basketball_match.School_ID, basketball_match.Team_Name, basketball_match.ACC_Regular_Season, basketball_match.ACC_Percent, basketball_match.ACC_Home, basketball_match.ACC_Road, basketball_match.All_Games, basketball_match.All_Games_Percent, basketb... | SELECT team_name FROM basketball_match ORDER BY All_Home DESC; |
Tables: chip_model, screen_mode, phone
Columns: chip_model.Model_name, chip_model.Launch_year, chip_model.RAM_MiB, chip_model.ROM_MiB, chip_model.Slots, chip_model.WiFi, chip_model.Bluetooth, screen_mode.Graphics_mode, screen_mode.Char_cells, screen_mode.Pixels, screen_mode.Hardware_colours, screen_mode.used_kb, screen... | SELECT Model_name FROM chip_model WHERE Launch_year BETWEEN 2002 AND 2004; |
Tables: chip_model, screen_mode, phone
Columns: chip_model.Model_name, chip_model.Launch_year, chip_model.RAM_MiB, chip_model.ROM_MiB, chip_model.Slots, chip_model.WiFi, chip_model.Bluetooth, screen_mode.Graphics_mode, screen_mode.Char_cells, screen_mode.Pixels, screen_mode.Hardware_colours, screen_mode.used_kb, screen... | SELECT Model_name , RAM_MiB FROM chip_model ORDER BY RAM_MiB ASC LIMIT 1; |
Tables: chip_model, screen_mode, phone
Columns: chip_model.Model_name, chip_model.Launch_year, chip_model.RAM_MiB, chip_model.ROM_MiB, chip_model.Slots, chip_model.WiFi, chip_model.Bluetooth, screen_mode.Graphics_mode, screen_mode.Char_cells, screen_mode.Pixels, screen_mode.Hardware_colours, screen_mode.used_kb, screen... | SELECT chip_model , screen_mode FROM phone WHERE Hardware_Model_name = "LG-P760"; |
Tables: chip_model, screen_mode, phone
Columns: chip_model.Model_name, chip_model.Launch_year, chip_model.RAM_MiB, chip_model.ROM_MiB, chip_model.Slots, chip_model.WiFi, chip_model.Bluetooth, screen_mode.Graphics_mode, screen_mode.Char_cells, screen_mode.Pixels, screen_mode.Hardware_colours, screen_mode.used_kb, screen... | SELECT count(*) FROM phone WHERE Company_name = "Nokia Corporation"; |
Tables: chip_model, screen_mode, phone
Columns: chip_model.Model_name, chip_model.Launch_year, chip_model.RAM_MiB, chip_model.ROM_MiB, chip_model.Slots, chip_model.WiFi, chip_model.Bluetooth, screen_mode.Graphics_mode, screen_mode.Char_cells, screen_mode.Pixels, screen_mode.Hardware_colours, screen_mode.used_kb, screen... | SELECT max(T1.RAM_MiB) , min(T1.RAM_MiB) FROM chip_model AS T1 JOIN phone AS T2 ON T1.Model_name = T2.chip_model WHERE T2.Company_name = "Nokia Corporation"; |
Tables: chip_model, screen_mode, phone
Columns: chip_model.Model_name, chip_model.Launch_year, chip_model.RAM_MiB, chip_model.ROM_MiB, chip_model.Slots, chip_model.WiFi, chip_model.Bluetooth, screen_mode.Graphics_mode, screen_mode.Char_cells, screen_mode.Pixels, screen_mode.Hardware_colours, screen_mode.used_kb, screen... | SELECT avg(T1.ROM_MiB) FROM chip_model AS T1 JOIN phone AS T2 ON T1.Model_name = T2.chip_model WHERE T2.Company_name = "Nokia Corporation"; |
Tables: chip_model, screen_mode, phone
Columns: chip_model.Model_name, chip_model.Launch_year, chip_model.RAM_MiB, chip_model.ROM_MiB, chip_model.Slots, chip_model.WiFi, chip_model.Bluetooth, screen_mode.Graphics_mode, screen_mode.Char_cells, screen_mode.Pixels, screen_mode.Hardware_colours, screen_mode.used_kb, screen... | SELECT T2.Hardware_Model_name , T2.Company_name FROM chip_model AS T1 JOIN phone AS T2 ON T1.Model_name = T2.chip_model WHERE T1.Launch_year = 2002 OR T1.RAM_MiB > 32; |
Tables: chip_model, screen_mode, phone
Columns: chip_model.Model_name, chip_model.Launch_year, chip_model.RAM_MiB, chip_model.ROM_MiB, chip_model.Slots, chip_model.WiFi, chip_model.Bluetooth, screen_mode.Graphics_mode, screen_mode.Char_cells, screen_mode.Pixels, screen_mode.Hardware_colours, screen_mode.used_kb, screen... | SELECT Hardware_Model_name , Company_name FROM phone WHERE Accreditation_type LIKE 'Full'; |
Tables: chip_model, screen_mode, phone
Columns: chip_model.Model_name, chip_model.Launch_year, chip_model.RAM_MiB, chip_model.ROM_MiB, chip_model.Slots, chip_model.WiFi, chip_model.Bluetooth, screen_mode.Graphics_mode, screen_mode.Char_cells, screen_mode.Pixels, screen_mode.Hardware_colours, screen_mode.used_kb, screen... | SELECT T1.Char_cells , T1.Pixels , T1.Hardware_colours FROM screen_mode AS T1 JOIN phone AS T2 ON T1.Graphics_mode = T2.screen_mode WHERE T2.Hardware_Model_name = "LG-P760"; |
Tables: chip_model, screen_mode, phone
Columns: chip_model.Model_name, chip_model.Launch_year, chip_model.RAM_MiB, chip_model.ROM_MiB, chip_model.Slots, chip_model.WiFi, chip_model.Bluetooth, screen_mode.Graphics_mode, screen_mode.Char_cells, screen_mode.Pixels, screen_mode.Hardware_colours, screen_mode.used_kb, screen... | SELECT T2.Hardware_Model_name , T2.Company_name FROM screen_mode AS T1 JOIN phone AS T2 ON T1.Graphics_mode = T2.screen_mode WHERE T1.Type = "Graphics"; |
Tables: chip_model, screen_mode, phone
Columns: chip_model.Model_name, chip_model.Launch_year, chip_model.RAM_MiB, chip_model.ROM_MiB, chip_model.Slots, chip_model.WiFi, chip_model.Bluetooth, screen_mode.Graphics_mode, screen_mode.Char_cells, screen_mode.Pixels, screen_mode.Hardware_colours, screen_mode.used_kb, screen... | SELECT Company_name , count(*) FROM phone GROUP BY Company_name ORDER BY count(*) ASC LIMIT 1; |
Tables: chip_model, screen_mode, phone
Columns: chip_model.Model_name, chip_model.Launch_year, chip_model.RAM_MiB, chip_model.ROM_MiB, chip_model.Slots, chip_model.WiFi, chip_model.Bluetooth, screen_mode.Graphics_mode, screen_mode.Char_cells, screen_mode.Pixels, screen_mode.Hardware_colours, screen_mode.used_kb, screen... | SELECT Company_name FROM phone GROUP BY Company_name HAVING count(*) > 1; |
Tables: chip_model, screen_mode, phone
Columns: chip_model.Model_name, chip_model.Launch_year, chip_model.RAM_MiB, chip_model.ROM_MiB, chip_model.Slots, chip_model.WiFi, chip_model.Bluetooth, screen_mode.Graphics_mode, screen_mode.Char_cells, screen_mode.Pixels, screen_mode.Hardware_colours, screen_mode.used_kb, screen... | SELECT max(used_kb) , min(used_kb) , avg(used_kb) FROM screen_mode; |
Tables: chip_model, screen_mode, phone
Columns: chip_model.Model_name, chip_model.Launch_year, chip_model.RAM_MiB, chip_model.ROM_MiB, chip_model.Slots, chip_model.WiFi, chip_model.Bluetooth, screen_mode.Graphics_mode, screen_mode.Char_cells, screen_mode.Pixels, screen_mode.Hardware_colours, screen_mode.used_kb, screen... | SELECT T2.Hardware_Model_name FROM chip_model AS T1 JOIN phone AS T2 ON T1.Model_name = T2.chip_model WHERE T1.Launch_year = 2002 ORDER BY T1.RAM_MiB DESC LIMIT 1; |
Tables: chip_model, screen_mode, phone
Columns: chip_model.Model_name, chip_model.Launch_year, chip_model.RAM_MiB, chip_model.ROM_MiB, chip_model.Slots, chip_model.WiFi, chip_model.Bluetooth, screen_mode.Graphics_mode, screen_mode.Char_cells, screen_mode.Pixels, screen_mode.Hardware_colours, screen_mode.used_kb, screen... | SELECT T1.WiFi , T3.Type FROM chip_model AS T1 JOIN phone AS T2 ON T1.Model_name = T2.chip_model JOIN screen_mode AS T3 ON T2.screen_mode = T3.Graphics_mode WHERE T2.Hardware_Model_name = "LG-P760"; |
Tables: chip_model, screen_mode, phone
Columns: chip_model.Model_name, chip_model.Launch_year, chip_model.RAM_MiB, chip_model.ROM_MiB, chip_model.Slots, chip_model.WiFi, chip_model.Bluetooth, screen_mode.Graphics_mode, screen_mode.Char_cells, screen_mode.Pixels, screen_mode.Hardware_colours, screen_mode.used_kb, screen... | SELECT T2.Hardware_Model_name FROM chip_model AS T1 JOIN phone AS T2 ON T1.Model_name = T2.chip_model JOIN screen_mode AS T3 ON T2.screen_mode = T3.Graphics_mode WHERE T3.Type = "Text" OR T1.RAM_MiB > 32; |
Tables: chip_model, screen_mode, phone
Columns: chip_model.Model_name, chip_model.Launch_year, chip_model.RAM_MiB, chip_model.ROM_MiB, chip_model.Slots, chip_model.WiFi, chip_model.Bluetooth, screen_mode.Graphics_mode, screen_mode.Char_cells, screen_mode.Pixels, screen_mode.Hardware_colours, screen_mode.used_kb, screen... | SELECT DISTINCT T2.Hardware_Model_name FROM screen_mode AS T1 JOIN phone AS T2 ON T1.Graphics_mode = T2.screen_mode WHERE T1.Type = "Graphics" OR t2.Company_name = "Nokia Corporation"; |
Tables: chip_model, screen_mode, phone
Columns: chip_model.Model_name, chip_model.Launch_year, chip_model.RAM_MiB, chip_model.ROM_MiB, chip_model.Slots, chip_model.WiFi, chip_model.Bluetooth, screen_mode.Graphics_mode, screen_mode.Char_cells, screen_mode.Pixels, screen_mode.Hardware_colours, screen_mode.used_kb, screen... | SELECT DISTINCT T2.Hardware_Model_name FROM screen_mode AS T1 JOIN phone AS T2 ON T1.Graphics_mode = T2.screen_mode WHERE t2.Company_name = "Nokia Corporation" AND T1.Type != "Text"; |
Tables: chip_model, screen_mode, phone
Columns: chip_model.Model_name, chip_model.Launch_year, chip_model.RAM_MiB, chip_model.ROM_MiB, chip_model.Slots, chip_model.WiFi, chip_model.Bluetooth, screen_mode.Graphics_mode, screen_mode.Char_cells, screen_mode.Pixels, screen_mode.Hardware_colours, screen_mode.used_kb, screen... | SELECT DISTINCT T2.Hardware_Model_name , T2.Company_name FROM screen_mode AS T1 JOIN phone AS T2 ON T1.Graphics_mode = T2.screen_mode WHERE T1.used_kb BETWEEN 10 AND 15; |
Tables: chip_model, screen_mode, phone
Columns: chip_model.Model_name, chip_model.Launch_year, chip_model.RAM_MiB, chip_model.ROM_MiB, chip_model.Slots, chip_model.WiFi, chip_model.Bluetooth, screen_mode.Graphics_mode, screen_mode.Char_cells, screen_mode.Pixels, screen_mode.Hardware_colours, screen_mode.used_kb, screen... | SELECT Accreditation_type , count(*) FROM phone GROUP BY Accreditation_type; |
Tables: chip_model, screen_mode, phone
Columns: chip_model.Model_name, chip_model.Launch_year, chip_model.RAM_MiB, chip_model.ROM_MiB, chip_model.Slots, chip_model.WiFi, chip_model.Bluetooth, screen_mode.Graphics_mode, screen_mode.Char_cells, screen_mode.Pixels, screen_mode.Hardware_colours, screen_mode.used_kb, screen... | SELECT Accreditation_type , count(*) FROM phone GROUP BY Accreditation_type; |
Tables: chip_model, screen_mode, phone
Columns: chip_model.Model_name, chip_model.Launch_year, chip_model.RAM_MiB, chip_model.ROM_MiB, chip_model.Slots, chip_model.WiFi, chip_model.Bluetooth, screen_mode.Graphics_mode, screen_mode.Char_cells, screen_mode.Pixels, screen_mode.Hardware_colours, screen_mode.used_kb, screen... | SELECT Accreditation_level FROM phone GROUP BY Accreditation_level HAVING count(*) > 3; |
Tables: chip_model, screen_mode, phone
Columns: chip_model.Model_name, chip_model.Launch_year, chip_model.RAM_MiB, chip_model.ROM_MiB, chip_model.Slots, chip_model.WiFi, chip_model.Bluetooth, screen_mode.Graphics_mode, screen_mode.Char_cells, screen_mode.Pixels, screen_mode.Hardware_colours, screen_mode.used_kb, screen... | SELECT * FROM chip_model; |
Tables: chip_model, screen_mode, phone
Columns: chip_model.Model_name, chip_model.Launch_year, chip_model.RAM_MiB, chip_model.ROM_MiB, chip_model.Slots, chip_model.WiFi, chip_model.Bluetooth, screen_mode.Graphics_mode, screen_mode.Char_cells, screen_mode.Pixels, screen_mode.Hardware_colours, screen_mode.used_kb, screen... | SELECT count(*) FROM chip_model WHERE wifi = 'No'; |
Tables: chip_model, screen_mode, phone
Columns: chip_model.Model_name, chip_model.Launch_year, chip_model.RAM_MiB, chip_model.ROM_MiB, chip_model.Slots, chip_model.WiFi, chip_model.Bluetooth, screen_mode.Graphics_mode, screen_mode.Char_cells, screen_mode.Pixels, screen_mode.Hardware_colours, screen_mode.used_kb, screen... | SELECT count(*) FROM chip_model WHERE wifi = 'No'; |
Tables: chip_model, screen_mode, phone
Columns: chip_model.Model_name, chip_model.Launch_year, chip_model.RAM_MiB, chip_model.ROM_MiB, chip_model.Slots, chip_model.WiFi, chip_model.Bluetooth, screen_mode.Graphics_mode, screen_mode.Char_cells, screen_mode.Pixels, screen_mode.Hardware_colours, screen_mode.used_kb, screen... | SELECT model_name FROM chip_model ORDER BY launch_year; |
Tables: chip_model, screen_mode, phone
Columns: chip_model.Model_name, chip_model.Launch_year, chip_model.RAM_MiB, chip_model.ROM_MiB, chip_model.Slots, chip_model.WiFi, chip_model.Bluetooth, screen_mode.Graphics_mode, screen_mode.Char_cells, screen_mode.Pixels, screen_mode.Hardware_colours, screen_mode.used_kb, screen... | SELECT avg(RAM_MiB) FROM chip_model WHERE model_name NOT IN (SELECT chip_model FROM phone); |
Tables: chip_model, screen_mode, phone
Columns: chip_model.Model_name, chip_model.Launch_year, chip_model.RAM_MiB, chip_model.ROM_MiB, chip_model.Slots, chip_model.WiFi, chip_model.Bluetooth, screen_mode.Graphics_mode, screen_mode.Char_cells, screen_mode.Pixels, screen_mode.Hardware_colours, screen_mode.used_kb, screen... | SELECT model_name FROM chip_model EXCEPT SELECT chip_model FROM phone WHERE Accreditation_type = 'Full'; |
Tables: chip_model, screen_mode, phone
Columns: chip_model.Model_name, chip_model.Launch_year, chip_model.RAM_MiB, chip_model.ROM_MiB, chip_model.Slots, chip_model.WiFi, chip_model.Bluetooth, screen_mode.Graphics_mode, screen_mode.Char_cells, screen_mode.Pixels, screen_mode.Hardware_colours, screen_mode.used_kb, screen... | SELECT t1.pixels FROM screen_mode AS t1 JOIN phone AS t2 ON t1.Graphics_mode = t2.screen_mode WHERE t2.Accreditation_type = 'Provisional' INTERSECT SELECT t1.pixels FROM screen_mode AS t1 JOIN phone AS t2 ON t1.Graphics_mode = t2.screen_mode WHERE t2.Accreditation_type = 'Full'; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT count(*) FROM country; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT count(*) FROM country; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT Country_name , Capital FROM country; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT Country_name , Capital FROM country; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT Official_native_language FROM country WHERE Official_native_language LIKE "%English%"; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT Official_native_language FROM country WHERE Official_native_language LIKE "%English%"; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT DISTINCT POSITION FROM match_season; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT DISTINCT POSITION FROM match_season; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT Player FROM match_season WHERE College = "UCLA"; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT Player FROM match_season WHERE College = "UCLA"; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT DISTINCT POSITION FROM match_season WHERE College = "UCLA" OR College = "Duke"; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT DISTINCT POSITION FROM match_season WHERE College = "UCLA" OR College = "Duke"; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT Draft_Pick_Number , Draft_Class FROM match_season WHERE POSITION = "Defender"; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT Draft_Pick_Number , Draft_Class FROM match_season WHERE POSITION = "Defender"; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT count(DISTINCT Team) FROM match_season; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT count(DISTINCT Team) FROM match_season; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT Player , Years_Played FROM player; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT Player , Years_Played FROM player; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT Name FROM Team; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT Name FROM Team; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT T2.Season , T2.Player , T1.Country_name FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT T2.Season , T2.Player , T1.Country_name FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT T2.Player FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country WHERE T1.Country_name = "Indonesia"; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT T2.Player FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country WHERE T1.Country_name = "Indonesia"; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT DISTINCT T2.Position FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country WHERE T1.Capital = "Dublin"; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT DISTINCT T2.Position FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country WHERE T1.Capital = "Dublin"; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT T1.Official_native_language FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country WHERE T2.College = "Maryland" OR T2.College = "Duke"; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT T1.Official_native_language FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country WHERE T2.College = "Maryland" OR T2.College = "Duke"; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT count(DISTINCT T1.Official_native_language) FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country WHERE T2.Position = "Defender"; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT count(DISTINCT T1.Official_native_language) FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country WHERE T2.Position = "Defender"; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT T1.Season , T1.Player , T2.Name FROM match_season AS T1 JOIN team AS T2 ON T1.Team = T2.Team_id; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT T1.Season , T1.Player , T2.Name FROM match_season AS T1 JOIN team AS T2 ON T1.Team = T2.Team_id; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT T1.Position FROM match_season AS T1 JOIN team AS T2 ON T1.Team = T2.Team_id WHERE T2.Name = "Ryley Goldner"; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT T1.Position FROM match_season AS T1 JOIN team AS T2 ON T1.Team = T2.Team_id WHERE T2.Name = "Ryley Goldner"; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT count(DISTINCT T1.College) FROM match_season AS T1 JOIN team AS T2 ON T1.Team = T2.Team_id WHERE T2.Name = "Columbus Crew"; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT count(DISTINCT T1.College) FROM match_season AS T1 JOIN team AS T2 ON T1.Team = T2.Team_id WHERE T2.Name = "Columbus Crew"; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT T1.Player , T1.Years_Played FROM player AS T1 JOIN team AS T2 ON T1.Team = T2.Team_id WHERE T2.Name = "Columbus Crew"; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT T1.Player , T1.Years_Played FROM player AS T1 JOIN team AS T2 ON T1.Team = T2.Team_id WHERE T2.Name = "Columbus Crew"; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT POSITION , COUNT(*) FROM match_season GROUP BY POSITION; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT POSITION , COUNT(*) FROM match_season GROUP BY POSITION; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT Country_name , COUNT(*) FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country GROUP BY T1.Country_name; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT Country_name , COUNT(*) FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country GROUP BY T1.Country_name; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT player FROM match_season ORDER BY College ASC; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT player FROM match_season ORDER BY College ASC; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT POSITION FROM match_season GROUP BY POSITION ORDER BY count(*) DESC LIMIT 1; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT POSITION FROM match_season GROUP BY POSITION ORDER BY count(*) DESC LIMIT 1; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT College FROM match_season GROUP BY College ORDER BY count(*) DESC LIMIT 3; |
Tables: country, team, match_season, player
Columns: country.Country_id, country.Country_name, country.Capital, country.Official_native_language, team.Team_id, team.Name, match_season.Season, match_season.Player, match_season.Position, match_season.Country, match_season.Team, match_season.Draft_Pick_Number, match_seaso... | SELECT College FROM match_season GROUP BY College ORDER BY count(*) DESC LIMIT 3; |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.