db_id
stringclasses
69 values
question
stringlengths
24
325
evidence
stringlengths
0
673
SQL
stringlengths
23
804
db_schema_T
stringlengths
79
5k
db_schema
stringclasses
69 values
difficulty
stringclasses
1 value
question_id
int64
0
9.43k
__index_level_0__
int64
0
9.43k
db_schema_TC
stringlengths
41
1.68k
sql_constructs
listlengths
2
17
sql_complexity
int64
2
46
sql_complexity_buckets
stringclasses
3 values
few_shots
dict
bike_share_1
What was duration of the longest trip started on the day that has a maximum wind speed of 30 mph?
longest trip refers to MAX(duration); started on the day refers to start_date; maximum wind speed refers to max_wind_speed_mph; max_wind_speed_mph = 30;
SELECT T1.duration FROM trip AS T1 INNER JOIN weather AS T2 ON T2.zip_code = T1.zip_code WHERE T2.max_wind_Speed_mph = 30 ORDER BY T1.duration DESC LIMIT 1
CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,054
9,054
CREATE TABLE `trip` ( duration INTEGER, zip_code INTEGER ) CREATE TABLE `weather` ( max_wind_Speed_mph INTEGER, zip_code TEXT )
[ "AS", "SELECT", "ORDER BY", "LIMIT", "INNER JOIN", "ON", "DESC", "FROM" ]
9
simple
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ -1 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 33, 34, 36, 37, 38, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 80, 81, 82, 83, 84, 85, 86, 88, 89, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 108, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 173, 174, 175, 176, 177, 179, 180, 181, 183, 184, 185, 186, 187, 188, 189, 190, 191, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 208, 211, 212, 213, 214, 217, 218, 219, 220, 221, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 252, 254, 256, 257, 258, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 285, 286, 287, 289, 290, 291, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 352, 353, 354, 356, 357, 358, 359, 360, 361, 363, 364, 365, 368, 369, 370, 371, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 448, 449, 450, 451, 452, 454, 455, 456, 457, 459, 460, 462, 463, 464, 465, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 505, 507, 509, 511, 514, 515, 516, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 544, 547, 548, 550, 552, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 619, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 662, 663, 664, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 708, 710, 711, 712, 714, 715, 717, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 732, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 796, 797, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 815, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 836, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 869, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 934, 935, 936, 937, 938, 940, 943, 944, 946, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 972, 973, 974, 975, 977, 980, 981, 983, 985, 986, 987, 988, 991, 993, 994, 996, 997, 999, 1000, 1001, 1003, 1004, 1005, 1006, 1010, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1030, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1057, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1071, 1072, 1074, 1076, 1077, 1078, 1080, 1082, 1083, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1139, 1141 ] }
bike_share_1
Please calculate the average temperature of those trips that started at Market at 4th in 2013.
started at refers to start_station_name; start station_name = 'Market at 4th'; in 2013 refers to start_date like '%2013%'; temperature refers to mean_temperature_f; average temperature = DIVIDE(SUM(mean_temperature_f), COUNT(mean_temperature_f));
SELECT AVG(T2.mean_temperature_f) FROM trip AS T1 INNER JOIN weather AS T2 ON T2.zip_code = T1.zip_code WHERE SUBSTR(CAST(T2.date AS TEXT), -4) = '2013' AND T1.start_station_name = 'Market at 4th'
CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,055
9,055
CREATE TABLE `trip` ( start_station_name TEXT, zip_code INTEGER ) CREATE TABLE `weather` ( CREATE TABLE "weather" date TEXT, mean_temperature_f INTEGER, zip_code TEXT )
[ "AS", "AND", "SELECT", "INNER JOIN", "ON", "AVG", "SUBSTR", "CAST", "FROM" ]
11
medium
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ 178 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 88, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 367, 368, 369, 370, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 448, 449, 450, 451, 452, 454, 455, 456, 457, 459, 460, 462, 463, 464, 465, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 505, 507, 509, 510, 511, 514, 515, 516, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 544, 547, 548, 550, 552, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 998, 999, 1000, 1001, 1003, 1005, 1006, 1008, 1010, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1071, 1072, 1074, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
bike_share_1
What was the mean humidity of a trip with id 4275?
mean humidity refers to mean_humidity;
SELECT T2.mean_humidity FROM trip AS T1 INNER JOIN weather AS T2 ON T2.zip_code = T1.zip_code WHERE T1.id = 4275
CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,056
9,056
CREATE TABLE `trip` ( CREATE TABLE "trip" id INTEGER not null primary key, start_station_id INTEGER, end_station_id INTEGER, bike_id INTEGER, zip_code INTEGER ) CREATE TABLE `weather` ( mean_humidity INTEGER, zip_code TEXT )
[ "AS", "SELECT", "INNER JOIN", "ON", "FROM" ]
6
simple
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ 178 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 35, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 61, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 101, 102, 104, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 215, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 271, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 286, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 367, 368, 369, 370, 373, 374, 375, 376, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 462, 463, 464, 465, 466, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 504, 505, 506, 507, 508, 509, 510, 511, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 526, 527, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 542, 544, 547, 548, 550, 552, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 601, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 657, 658, 659, 660, 661, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 786, 787, 788, 790, 792, 793, 795, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 978, 980, 981, 982, 985, 986, 988, 991, 993, 994, 996, 997, 998, 999, 1000, 1001, 1003, 1004, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1074, 1075, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1113, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
bike_share_1
In 2015, what percentage of trips that had the subscription type was Customer and ended on a rainy day?
in 2015 refers to end_date like '%2015%'; percentage = DIVIDE(COUNT(events = 'Rain'), COUNT(events));
SELECT CAST(SUM(CASE WHEN T2.events = 'Rain' THEN 1 ELSE 0 END) AS REAL) * 100 / COUNT(T1.id) FROM trip AS T1 INNER JOIN weather AS T2 ON T2.zip_code = T1.zip_code WHERE SUBSTR(CAST(T2.date AS TEXT), -4) = '2015' AND T1.subscription_type = 'Customer'
CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,057
9,057
CREATE TABLE `trip` ( CREATE TABLE "trip" id INTEGER not null primary key, start_station_id INTEGER, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE `weather` ( CREATE TABLE "weather" date TEXT, events TEXT, zip_code TEXT )
[ "CASE WHEN", "AS", "AND", "SELECT", "SUM", "CASE", "INNER JOIN", "ON", "SUBSTR", "CAST", "COUNT", "FROM" ]
16
challenging
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ -1 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 4, 6, 16, 22, 24, 30, 37, 39, 42, 47, 51, 53, 61, 63, 64, 68, 69, 71, 73, 74, 75, 77, 81, 88, 93, 96, 98, 106, 112, 113, 115, 117, 118, 119, 120, 125, 127, 129, 131, 141, 142, 143, 146, 148, 152, 153, 155, 158, 160, 164, 169, 170, 175, 183, 184, 187, 189, 191, 192, 195, 197, 201, 207, 212, 214, 215, 219, 223, 225, 226, 227, 234, 236, 244, 248, 254, 256, 258, 261, 264, 267, 268, 271, 276, 277, 278, 279, 299, 300, 301, 304, 314, 316, 317, 319, 322, 323, 325, 330, 335, 339, 341, 347, 356, 360, 370, 374, 375, 382, 383, 391, 393, 398, 402, 403, 406, 409, 412, 415, 416, 417, 423, 424, 426, 427, 436, 438, 444, 448, 451, 452, 453, 458, 464, 469, 470, 476, 477, 478, 483, 485, 486, 487, 488, 490, 493, 500, 504, 510, 514, 515, 516, 517, 518, 519, 520, 526, 528, 535, 537, 540, 544, 547, 550, 558, 559, 560, 563, 564, 571, 573, 575, 580, 581, 582, 595, 597, 608, 612, 613, 620, 623, 627, 628, 630, 632, 633, 640, 641, 646, 658, 662, 663, 666, 668, 671, 676, 682, 686, 687, 690, 710, 712, 714, 723, 727, 734, 735, 739, 740, 743, 744, 747, 749, 750, 753, 756, 760, 762, 768, 772, 776, 777, 787, 788, 795, 796, 797, 798, 799, 800, 802, 804, 808, 810, 813, 814, 819, 824, 825, 827, 830, 832, 838, 841, 844, 848, 849, 851, 853, 867, 868, 870, 871, 874, 877, 886, 888, 894, 896, 898, 902, 909, 912, 917, 922, 923, 924, 926, 930, 935, 943, 944, 954, 956, 958, 959, 961, 969, 985, 986, 996, 998, 1008, 1012, 1022, 1023, 1027, 1031, 1042, 1058, 1062, 1064, 1067, 1068, 1069, 1071, 1072, 1078, 1082, 1084, 1086, 1087, 1092, 1098, 1100, 1101, 1103, 1104, 1119, 1121, 1123, 1128, 1131, 1133, 1134, 1135 ] }
bike_share_1
How many bike stations are installed after August, 2013 in San Jose?
installed after August, 2013 refers to year(installation_date)>2013; in San Jose refers to city = 'San Jose';
SELECT COUNT(installation_date) FROM station WHERE city = 'San Jose' AND (SUBSTR(CAST(installation_date AS TEXT), 1, INSTR(installation_date, '/') - 1) IN ('8', '9', '10', '11', '12') AND SUBSTR(CAST(installation_date AS TEXT), -4) = '2013') OR SUBSTR(CAST(installation_date AS TEXT), -4) > '2013'
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,058
9,058
CREATE TABLE `station` ( lat REAL, city TEXT, installation_date TEXT )
[ "OR", "AND", "SELECT", "AS", "INSTR", "IN", "SUBSTR", "CAST", "COUNT", "FROM" ]
17
challenging
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ -1 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 22, 89, 93, 106, 113, 119, 152, 184, 219, 267, 317, 341, 382, 383, 406, 409, 448, 451, 476, 500, 510, 537, 563, 581, 663, 740, 753, 798, 800, 838, 851, 870, 874, 896, 924, 958, 985, 1008, 1023, 1064, 1072, 1087, 1101, 1121, 1128 ] }
bike_share_1
What is the mean temperature in Fahrenheit on 8/29/2013 for the area where the zip code is 94107?
mean temperature in Fahrenheit refers to mean_temperature_f; on 8/29/2013 refers to date = '8/29/2013';
SELECT SUM(IIF(zip_code = 94107 AND date = '8/29/2013', mean_temperature_f, 0)) FROM weather
CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,059
9,059
CREATE TABLE `weather` ( mean_temperature_f INTEGER, zip_code TEXT )
[ "AND", "SELECT", "/", "SUM", "FROM" ]
6
simple
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ 1009 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 2, 4, 5, 6, 8, 10, 12, 19, 20, 21, 22, 24, 26, 30, 32, 33, 35, 37, 38, 39, 40, 42, 43, 44, 45, 47, 50, 51, 52, 53, 54, 56, 57, 61, 63, 64, 66, 67, 68, 69, 71, 73, 74, 75, 76, 77, 79, 81, 83, 85, 87, 88, 90, 93, 94, 95, 96, 97, 98, 99, 100, 104, 109, 111, 112, 113, 115, 116, 117, 118, 119, 120, 122, 125, 127, 128, 129, 131, 138, 141, 142, 143, 144, 146, 148, 152, 153, 154, 155, 158, 160, 163, 164, 168, 169, 170, 172, 173, 175, 176, 177, 180, 183, 184, 186, 187, 189, 191, 192, 195, 197, 200, 201, 205, 207, 212, 213, 214, 215, 219, 223, 225, 226, 227, 228, 230, 234, 236, 239, 240, 244, 245, 248, 254, 255, 256, 258, 259, 261, 262, 264, 265, 266, 267, 268, 270, 271, 272, 275, 276, 277, 278, 279, 282, 285, 294, 296, 300, 301, 304, 305, 313, 314, 315, 316, 317, 319, 323, 325, 330, 335, 339, 341, 347, 350, 356, 360, 361, 362, 363, 365, 367, 368, 370, 374, 376, 378, 379, 381, 382, 383, 385, 391, 393, 395, 398, 399, 402, 403, 405, 406, 408, 409, 412, 413, 414, 415, 416, 417, 418, 419, 421, 424, 425, 426, 427, 428, 433, 436, 437, 438, 439, 440, 444, 446, 448, 450, 451, 452, 453, 455, 463, 464, 469, 470, 475, 476, 477, 480, 482, 483, 486, 487, 488, 490, 492, 493, 494, 496, 497, 498, 500, 504, 506, 507, 510, 512, 514, 515, 516, 517, 518, 519, 520, 522, 524, 526, 527, 528, 529, 530, 533, 535, 537, 539, 540, 541, 544, 547, 550, 551, 554, 557, 558, 559, 561, 562, 563, 564, 571, 575, 579, 580, 581, 582, 584, 586, 588, 589, 591, 594, 595, 597, 599, 601, 605, 608, 609, 610, 612, 613, 615, 618, 622, 623, 624, 625, 626, 627, 628, 630, 632, 633, 636, 637, 638, 640, 641, 643, 648, 649, 650, 651, 656, 658, 662, 663, 666, 667, 668, 671, 675, 676, 677, 678, 679, 680, 682, 683, 684, 685, 686, 687, 690, 692, 693, 695, 697, 699, 701, 702, 707, 709, 710, 712, 714, 715, 716, 717, 718, 719, 723, 726, 727, 730, 734, 735, 739, 740, 741, 743, 744, 745, 746, 747, 749, 750, 753, 754, 756, 758, 760, 762, 763, 765, 767, 768, 773, 775, 776, 777, 780, 783, 785, 787, 788, 793, 794, 795, 796, 797, 798, 799, 800, 802, 804, 806, 807, 808, 810, 813, 814, 817, 819, 820, 823, 824, 825, 827, 829, 830, 831, 832, 835, 838, 840, 841, 843, 844, 848, 849, 851, 853, 855, 858, 859, 860, 861, 864, 865, 867, 868, 870, 871, 872, 873, 874, 877, 878, 879, 886, 888, 892, 894, 895, 896, 902, 903, 905, 907, 909, 912, 913, 917, 920, 922, 923, 924, 928, 929, 930, 931, 932, 935, 939, 943, 944, 945, 949, 953, 954, 956, 958, 959, 961, 962, 965, 969, 973, 974, 979, 985, 986, 987, 991, 996, 998, 1000, 1001, 1008, 1009, 1012, 1014, 1017, 1018, 1019, 1020, 1022, 1023, 1027, 1031, 1038, 1039, 1042, 1044, 1046, 1058, 1059, 1061, 1063, 1064, 1066, 1067, 1068, 1069, 1071, 1072, 1073, 1078, 1079, 1080, 1081, 1082, 1084, 1086, 1087, 1092, 1093, 1098, 1100, 1101, 1103, 1104, 1105, 1109, 1110, 1115, 1117, 1119, 1121, 1123, 1126, 1128, 1131, 1135, 1136 ] }
bike_share_1
What is the difference between the hottest temperature and the coldest temperature in in Fahrenheit on 8/29/2013 for the area where the zip code is 94107?
hottest temperature refers to max_temperatutre_f; coldest temperature refers to min_temperature_f; difference = SUBTRACT(max_temperature_f, min_temperature_f); date = '8/29/2013'
SELECT SUM(IIF(zip_code = 94107 AND date = '8/29/2013', max_temperature_f - min_temperature_f, 0)) FROM weather
CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,060
9,060
CREATE TABLE `weather` ( max_temperature_f INTEGER, zip_code TEXT )
[ "AND", "SELECT", "/", "SUM", "FROM" ]
6
simple
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ 1009 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 2, 4, 5, 6, 8, 10, 12, 19, 20, 21, 22, 24, 26, 30, 32, 33, 35, 37, 38, 39, 40, 42, 43, 44, 45, 47, 50, 51, 52, 53, 54, 56, 57, 61, 63, 64, 66, 67, 68, 69, 71, 73, 74, 75, 76, 77, 79, 81, 83, 85, 87, 88, 90, 93, 94, 95, 96, 97, 98, 99, 100, 104, 109, 111, 112, 113, 115, 116, 117, 118, 119, 120, 122, 125, 127, 128, 129, 131, 138, 141, 142, 143, 144, 146, 148, 152, 153, 154, 155, 158, 160, 163, 164, 168, 169, 170, 172, 173, 175, 176, 177, 180, 183, 184, 186, 187, 189, 191, 192, 195, 197, 200, 201, 205, 207, 212, 213, 214, 215, 219, 223, 225, 226, 227, 228, 230, 234, 236, 239, 240, 244, 245, 248, 254, 255, 256, 258, 259, 261, 262, 264, 265, 266, 267, 268, 270, 271, 272, 275, 276, 277, 278, 279, 282, 285, 294, 296, 300, 301, 304, 305, 313, 314, 315, 316, 317, 319, 323, 325, 330, 335, 339, 341, 347, 350, 356, 360, 361, 362, 363, 365, 367, 368, 370, 374, 376, 378, 379, 381, 382, 383, 385, 391, 393, 395, 398, 399, 402, 403, 405, 406, 408, 409, 412, 413, 414, 415, 416, 417, 418, 419, 421, 424, 425, 426, 427, 428, 433, 436, 437, 438, 439, 440, 444, 446, 448, 450, 451, 452, 453, 455, 463, 464, 469, 470, 475, 476, 477, 480, 482, 483, 486, 487, 488, 490, 492, 493, 494, 496, 497, 498, 500, 504, 506, 507, 510, 512, 514, 515, 516, 517, 518, 519, 520, 522, 524, 526, 527, 528, 529, 530, 533, 535, 537, 539, 540, 541, 544, 547, 550, 551, 554, 557, 558, 559, 561, 562, 563, 564, 571, 575, 579, 580, 581, 582, 584, 586, 588, 589, 591, 594, 595, 597, 599, 601, 605, 608, 609, 610, 612, 613, 615, 618, 622, 623, 624, 625, 626, 627, 628, 630, 632, 633, 636, 637, 638, 640, 641, 643, 648, 649, 650, 651, 656, 658, 662, 663, 666, 667, 668, 671, 675, 676, 677, 678, 679, 680, 682, 683, 684, 685, 686, 687, 690, 692, 693, 695, 697, 699, 701, 702, 707, 709, 710, 712, 714, 715, 716, 717, 718, 719, 723, 726, 727, 730, 734, 735, 739, 740, 741, 743, 744, 745, 746, 747, 749, 750, 753, 754, 756, 758, 760, 762, 763, 765, 767, 768, 773, 775, 776, 777, 780, 783, 785, 787, 788, 793, 794, 795, 796, 797, 798, 799, 800, 802, 804, 806, 807, 808, 810, 813, 814, 817, 819, 820, 823, 824, 825, 827, 829, 830, 831, 832, 835, 838, 840, 841, 843, 844, 848, 849, 851, 853, 855, 858, 859, 860, 861, 864, 865, 867, 868, 870, 871, 872, 873, 874, 877, 878, 879, 886, 888, 892, 894, 895, 896, 902, 903, 905, 907, 909, 912, 913, 917, 920, 922, 923, 924, 928, 929, 930, 931, 932, 935, 939, 943, 944, 945, 949, 953, 954, 956, 958, 959, 961, 962, 965, 969, 973, 974, 979, 985, 986, 987, 991, 996, 998, 1000, 1001, 1008, 1009, 1012, 1014, 1017, 1018, 1019, 1020, 1022, 1023, 1027, 1031, 1038, 1039, 1042, 1044, 1046, 1058, 1059, 1061, 1063, 1064, 1066, 1067, 1068, 1069, 1071, 1072, 1073, 1078, 1079, 1080, 1081, 1082, 1084, 1086, 1087, 1092, 1093, 1098, 1100, 1101, 1103, 1104, 1105, 1109, 1110, 1115, 1117, 1119, 1121, 1123, 1126, 1128, 1131, 1135, 1136 ] }
bike_share_1
How many bikes can be borrowed in San Jose Diridon Caltrain Station at 12:06:01 on 2013/8/29?
number of bikes that can be borrowed refers to bikes_available; San Jose Diridon Caltrain Station refers to name = 'San Jose Diridon Caltrain Station'; time = '2013/8/29 12:06:01'
SELECT T2.bikes_available FROM station AS T1 INNER JOIN status AS T2 ON T1.id = T2.station_id WHERE T1.name = 'San Jose Diridon Caltrain Station' AND T2.time = '2013/08/29 12:06:01'
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,061
9,061
CREATE TABLE `station` ( CREATE TABLE "station" id INTEGER not null primary key, name TEXT ) CREATE TABLE `status` ( CREATE TABLE "status" station_id INTEGER, bikes_available INTEGER, time TEXT )
[ "AS", "AND", "SELECT", "/", "INNER JOIN", "ON", "FROM" ]
9
simple
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ 178, 1009 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 88, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 367, 368, 369, 370, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 447, 448, 449, 450, 451, 452, 454, 455, 456, 457, 459, 460, 462, 463, 464, 465, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 505, 507, 509, 510, 511, 514, 515, 516, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 544, 547, 548, 550, 551, 552, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 601, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 998, 999, 1000, 1001, 1003, 1005, 1006, 1008, 1009, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1071, 1072, 1074, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
bike_share_1
In which city's station is a bike borrowed on trip ID4069?
bike is borrowed from refers to start_station_id;
SELECT T2.city FROM trip AS T1 INNER JOIN station AS T2 ON T2.name = T1.start_station_name WHERE T1.id = 4069
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,062
9,062
CREATE TABLE `station` ( CREATE TABLE "station" id INTEGER not null primary key, name TEXT, city TEXT ) CREATE TABLE `trip` ( CREATE TABLE "trip" id INTEGER not null primary key, start_station_name TEXT, start_station_id INTEGER, end_station_id INTEGER, bike_id INTEGER )
[ "AS", "SELECT", "INNER JOIN", "ON", "FROM" ]
6
simple
{ "case_1": [ 178 ], "case_2": [ 178 ], "case_3": [ 178 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 35, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 61, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 101, 102, 104, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 215, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 271, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 286, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 367, 368, 369, 370, 373, 374, 375, 376, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 462, 463, 464, 465, 466, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 504, 505, 506, 507, 508, 509, 510, 511, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 526, 527, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 542, 544, 547, 548, 550, 552, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 601, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 657, 658, 659, 660, 661, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 786, 787, 788, 790, 792, 793, 795, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 978, 980, 981, 982, 985, 986, 988, 991, 993, 994, 996, 997, 998, 999, 1000, 1001, 1003, 1004, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1074, 1075, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1113, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
bike_share_1
How many bike trips started on the days in September, 2013 with the hottest temperature over 70 degrees Fahrenheit in the area where the zip code is 94107?
started on the days in September, 2013 refers to date LIKE'9%'AND date LIKE'%2013' hottest temperature over 70 degrees Fahrenheit refers to max_temperature_f>70;
SELECT COUNT(T1.id) FROM trip AS T1 INNER JOIN weather AS T2 ON T2.zip_code = T1.zip_code WHERE T2.date LIKE '9/%/2013' AND T2.zip_code = 94107 AND T2.max_temperature_f > 70
CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,063
9,063
CREATE TABLE `trip` ( CREATE TABLE "trip" id INTEGER not null primary key, start_station_id INTEGER, end_station_id INTEGER, bike_id INTEGER, zip_code INTEGER ) CREATE TABLE `weather` ( CREATE TABLE "weather" date TEXT, max_temperature_f INTEGER, zip_code TEXT )
[ "AS", "AND", "SELECT", "LIKE", "INNER JOIN", "ON", "COUNT", "FROM" ]
10
simple
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ -1 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 88, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 368, 369, 370, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 421, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 447, 448, 449, 450, 451, 452, 454, 455, 456, 457, 459, 460, 462, 463, 464, 465, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 505, 507, 509, 510, 511, 514, 515, 516, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 544, 547, 548, 550, 552, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 591, 592, 593, 595, 596, 597, 600, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 999, 1000, 1001, 1003, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1070, 1071, 1072, 1074, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
bike_share_1
Please list the starting stations of the bike trips made on a day with a max humidity over 80 in 2013 in the area where the zip code is 94107.
starting stations refers to start_station_name; day with a max humidity over 80 refers to max_humidity>80; in 2013 refers to date LIKE'%2013';
SELECT DISTINCT T1.start_station_name FROM trip AS T1 INNER JOIN weather AS T2 ON T2.zip_code = T1.zip_code WHERE SUBSTR(CAST(T2.date AS TEXT), -4) = '2013' AND T2.zip_code = 94107 AND T2.max_temperature_f > 80
CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,064
9,064
CREATE TABLE `trip` ( start_station_name TEXT, zip_code INTEGER ) CREATE TABLE `weather` ( CREATE TABLE "weather" date TEXT, max_temperature_f INTEGER, zip_code TEXT )
[ "AS", "AND", "SELECT", "INNER JOIN", "ON", "SUBSTR", "CAST", "FROM" ]
11
medium
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ -1 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 88, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 367, 368, 369, 370, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 448, 449, 450, 451, 452, 454, 455, 456, 457, 459, 460, 462, 463, 464, 465, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 505, 507, 509, 510, 511, 514, 515, 516, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 544, 547, 548, 550, 552, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 998, 999, 1000, 1001, 1003, 1005, 1006, 1008, 1010, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1071, 1072, 1074, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
bike_share_1
How many trips made by a subscriber started in August, 2013 from a station that can hold more than 20 bikes?
subscriber refers to subscription_type = 'Subscriber'; in August 2013 refers to start_date LIKE'8%' AND start_date LIKE'%2013%'; station that can hold more than 20 bikes refers to dock_count>20;
SELECT COUNT(T2.id) FROM station AS T1 INNER JOIN trip AS T2 ON T1.id = T2.start_station_id WHERE T2.subscription_type = 'Subscriber' AND T2.start_date LIKE '8/%/2013%' AND T1.dock_count > 20
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,065
9,065
CREATE TABLE `station` ( CREATE TABLE "station" id INTEGER not null primary key, dock_count INTEGER ) CREATE TABLE `trip` ( CREATE TABLE "trip" id INTEGER not null primary key, start_date TEXT, start_station_id INTEGER, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT )
[ "AS", "AND", "SELECT", "LIKE", "INNER JOIN", "ON", "COUNT", "FROM" ]
10
simple
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ -1 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 88, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 368, 369, 370, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 421, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 447, 448, 449, 450, 451, 452, 454, 455, 456, 457, 459, 460, 462, 463, 464, 465, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 505, 507, 509, 510, 511, 514, 515, 516, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 544, 547, 548, 550, 552, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 591, 592, 593, 595, 596, 597, 600, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 999, 1000, 1001, 1003, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1070, 1071, 1072, 1074, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
bike_share_1
What is the location coordinates of the bike station from which the bike for the trip that last the longest was borrowed?
location coordinates refers to (lat, long); bike that was borrowed the longest refers to MAX(duration);
SELECT T2.lat, T2.long FROM trip AS T1 INNER JOIN station AS T2 ON T2.name = T1.start_station_name WHERE T1.duration = ( SELECT MAX(T1.duration) FROM trip AS T1 INNER JOIN station AS T2 ON T2.name = T1.start_station_name )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,066
9,066
CREATE TABLE `station` ( name TEXT, lat REAL, long REAL, installation_date TEXT ) CREATE TABLE `trip` ( duration INTEGER, start_station_name TEXT )
[ "AS", "SELECT", "INNER JOIN", "ON", "FROM", "MAX" ]
13
medium
{ "case_1": [ -1 ], "case_2": [ 178 ], "case_3": [ 178 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 35, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 88, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 368, 369, 370, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 447, 448, 449, 450, 451, 452, 454, 455, 456, 457, 459, 460, 462, 463, 464, 465, 466, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 505, 507, 509, 511, 514, 515, 516, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 544, 547, 548, 550, 552, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 796, 797, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 999, 1000, 1001, 1003, 1005, 1006, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1071, 1072, 1074, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
bike_share_1
How many docks were left at the end station for trip ID4069?
end station refers to end_station_id; docks that were left refers to docks_available;
SELECT SUM(T2.docks_available) FROM trip AS T1 INNER JOIN status AS T2 ON T2.station_id = T1.end_station_id WHERE T1.ID = 4069
CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,067
9,067
CREATE TABLE `status` ( CREATE TABLE "status" station_id INTEGER, docks_available INTEGER ) CREATE TABLE `trip` ( CREATE TABLE "trip" id INTEGER not null primary key, start_station_id INTEGER, end_station_id INTEGER, bike_id INTEGER )
[ "AS", "SELECT", "SUM", "INNER JOIN", "ON", "FROM" ]
7
simple
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ 178 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 35, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 61, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 87, 88, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 104, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 215, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 271, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 368, 369, 370, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 459, 460, 462, 463, 464, 465, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 504, 505, 506, 507, 509, 510, 511, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 526, 527, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 544, 547, 548, 550, 552, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 795, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 998, 999, 1000, 1001, 1003, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1071, 1072, 1074, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
bike_share_1
Among the bike trips started on the days with a fog in 2013, how many of those trips started from the station "2nd at Townsend"?
started on the days with a fog refers to start_date where events = 'fog'; in 2013 refers to date LIKE '%2013'; started from station refers to start_station_name; start_station_name = '2nd at Townsend';
SELECT COUNT(T1.start_station_name) FROM trip AS T1 INNER JOIN weather AS T2 ON T2.zip_code = T1.zip_code WHERE T2.date LIKE '%2013%' AND T2.events = 'Fog' AND T1.start_station_name = '2nd at Townsend' AND T2.zip_code = 94107
CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,068
9,068
CREATE TABLE `trip` ( start_station_name TEXT, zip_code INTEGER ) CREATE TABLE `weather` ( CREATE TABLE "weather" date TEXT, events TEXT, zip_code TEXT )
[ "AS", "AND", "SELECT", "LIKE", "INNER JOIN", "ON", "COUNT", "FROM" ]
11
medium
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ -1 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 88, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 368, 369, 370, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 421, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 447, 448, 449, 450, 451, 452, 454, 455, 456, 457, 459, 460, 462, 463, 464, 465, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 505, 507, 509, 510, 511, 514, 515, 516, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 544, 547, 548, 550, 552, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 591, 592, 593, 595, 596, 597, 600, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 999, 1000, 1001, 1003, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1070, 1071, 1072, 1074, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
bike_share_1
What is the longest duration for a bike trip starting on a day with a fog in 2013?
longest duration refers to MAX(duration); starting on a day with a fog refers to start_date where events = 'fog'; in 2013 refers to date LIKE '%2013';
SELECT MAX(T1.duration) FROM trip AS T1 INNER JOIN weather AS T2 ON T2.zip_code = T1.zip_code WHERE T2.date LIKE '%2013%' AND T2.events = 'Fog' AND T2.zip_code = 94107
CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,069
9,069
CREATE TABLE `trip` ( duration INTEGER, zip_code INTEGER ) CREATE TABLE `weather` ( CREATE TABLE "weather" date TEXT, events TEXT, zip_code TEXT )
[ "AS", "AND", "SELECT", "LIKE", "INNER JOIN", "ON", "FROM", "MAX" ]
10
simple
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ -1 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 88, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 368, 369, 370, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 448, 449, 450, 451, 452, 454, 455, 456, 457, 459, 460, 462, 463, 464, 465, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 505, 507, 509, 511, 514, 515, 516, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 544, 547, 548, 550, 552, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 796, 797, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 999, 1000, 1001, 1003, 1005, 1006, 1010, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1071, 1072, 1074, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
bike_share_1
When was the bike station from which the bike was borrowed on trip ID4069 installed?
bike was borrowed from refers to start_station_id; when the bike station was installed refers to installation_date;
SELECT T2.installation_date FROM trip AS T1 INNER JOIN station AS T2 ON T2.name = T1.start_station_name WHERE T1.id = 4069
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,070
9,070
CREATE TABLE `station` ( CREATE TABLE "station" id INTEGER not null primary key, name TEXT, lat REAL, installation_date TEXT ) CREATE TABLE `trip` ( CREATE TABLE "trip" id INTEGER not null primary key, start_station_name TEXT, start_station_id INTEGER, end_station_id INTEGER, bike_id INTEGER )
[ "AS", "SELECT", "INNER JOIN", "ON", "FROM" ]
6
simple
{ "case_1": [ 178 ], "case_2": [ 178 ], "case_3": [ 178 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 35, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 61, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 101, 102, 104, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 215, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 271, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 286, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 367, 368, 369, 370, 373, 374, 375, 376, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 462, 463, 464, 465, 466, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 504, 505, 506, 507, 508, 509, 510, 511, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 526, 527, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 542, 544, 547, 548, 550, 552, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 601, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 657, 658, 659, 660, 661, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 786, 787, 788, 790, 792, 793, 795, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 978, 980, 981, 982, 985, 986, 988, 991, 993, 994, 996, 997, 998, 999, 1000, 1001, 1003, 1004, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1074, 1075, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1113, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
bike_share_1
How many trips with a bike borrowed from the stations in San Francisco were made by a subscriber?
bike was borrowed from refers to start_station_id; San Francisco refers to city = 'San Francisco'; subscriber refers to subscription_type = 'Subscriber';
SELECT COUNT(T1.id) FROM trip AS T1 INNER JOIN station AS T2 ON T2.ID = T1.start_station_id WHERE T2.city = 'San Francisco' AND T1.subscription_type = 'Subscriber'
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,071
9,071
CREATE TABLE `station` ( CREATE TABLE "station" id INTEGER not null primary key, city TEXT ) CREATE TABLE `trip` ( CREATE TABLE "trip" id INTEGER not null primary key, start_station_id INTEGER, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT )
[ "AS", "AND", "SELECT", "INNER JOIN", "ON", "COUNT", "FROM" ]
8
simple
{ "case_1": [ 178 ], "case_2": [ 178 ], "case_3": [ 178 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 109, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 230, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 271, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 286, 287, 289, 290, 292, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 367, 368, 369, 370, 373, 374, 375, 376, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 399, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 462, 463, 464, 465, 466, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 504, 505, 507, 509, 510, 511, 512, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 542, 544, 547, 548, 550, 552, 554, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 600, 601, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 618, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 665, 666, 667, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 680, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 692, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 707, 710, 711, 712, 714, 715, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 730, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 795, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 817, 818, 819, 820, 822, 823, 824, 825, 827, 828, 829, 830, 831, 832, 833, 834, 835, 837, 838, 839, 841, 843, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 903, 904, 905, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 945, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 965, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 998, 999, 1000, 1001, 1003, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1019, 1020, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1074, 1078, 1079, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1113, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1126, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
bike_share_1
On the day with the hottest temperature ever in 2014, how many bike trips started from the station 2nd at Folsom?
hottest temperature refers to max_temperatutre_f; in 2014 refers to date LIKE '%2014'; started from station refers to start_station_name; start_station_name = '2nd at Folsom';
SELECT COUNT(T1.start_station_name) FROM trip AS T1 INNER JOIN weather AS T2 ON T2.zip_code = T1.zip_code WHERE T2.date LIKE '%2014%' AND T2.zip_code = 94107 AND T1.start_station_name = '2nd at Folsom' ORDER BY T2.max_temperature_f DESC LIMIT 1
CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,072
9,072
CREATE TABLE `trip` ( start_station_name TEXT, zip_code INTEGER ) CREATE TABLE `weather` ( CREATE TABLE "weather" date TEXT, max_temperature_f INTEGER, zip_code TEXT )
[ "AS", "AND", "SELECT", "LIKE", "LIMIT", "ORDER BY", "INNER JOIN", "ON", "DESC", "COUNT", "FROM" ]
13
medium
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ -1 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 3, 4, 5, 6, 8, 10, 11, 12, 13, 15, 16, 19, 20, 21, 22, 24, 26, 27, 28, 29, 30, 33, 36, 37, 38, 39, 44, 45, 47, 49, 51, 52, 53, 55, 57, 59, 62, 63, 66, 68, 69, 71, 73, 74, 75, 76, 77, 78, 81, 82, 85, 86, 88, 89, 90, 91, 93, 95, 96, 98, 99, 106, 108, 111, 112, 113, 115, 116, 117, 118, 119, 121, 125, 126, 127, 128, 129, 131, 136, 138, 140, 141, 142, 143, 144, 146, 148, 150, 152, 154, 158, 159, 160, 162, 163, 164, 167, 169, 170, 172, 173, 175, 176, 177, 179, 180, 183, 184, 185, 187, 188, 189, 190, 191, 196, 197, 199, 200, 202, 206, 212, 213, 214, 219, 225, 226, 227, 229, 233, 234, 239, 240, 243, 244, 247, 252, 254, 256, 258, 261, 262, 263, 264, 265, 266, 267, 268, 269, 272, 275, 276, 277, 278, 281, 282, 286, 291, 296, 299, 301, 309, 311, 313, 314, 315, 316, 317, 319, 320, 323, 324, 325, 329, 330, 334, 335, 336, 338, 339, 341, 342, 344, 345, 348, 349, 352, 353, 354, 356, 358, 359, 360, 361, 364, 365, 368, 370, 371, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 424, 425, 426, 427, 428, 429, 430, 433, 434, 435, 436, 437, 438, 440, 444, 445, 446, 448, 451, 452, 454, 455, 460, 462, 463, 464, 465, 467, 469, 470, 471, 473, 475, 476, 477, 478, 480, 482, 484, 487, 488, 490, 493, 494, 495, 496, 497, 498, 500, 505, 507, 509, 514, 515, 516, 519, 520, 522, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 541, 542, 544, 547, 548, 552, 557, 558, 559, 560, 561, 562, 563, 564, 566, 567, 573, 578, 579, 580, 581, 582, 584, 586, 588, 589, 590, 592, 595, 596, 597, 605, 606, 608, 610, 611, 612, 613, 615, 620, 621, 624, 625, 626, 627, 630, 632, 633, 634, 637, 638, 641, 643, 645, 646, 648, 649, 651, 654, 657, 658, 659, 662, 663, 664, 665, 666, 668, 669, 671, 675, 677, 678, 681, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 696, 697, 698, 699, 701, 702, 703, 705, 712, 714, 715, 719, 721, 726, 727, 733, 734, 735, 736, 739, 740, 741, 743, 746, 747, 748, 749, 750, 752, 753, 754, 756, 758, 759, 760, 762, 763, 765, 767, 768, 769, 772, 773, 774, 775, 776, 777, 778, 779, 780, 783, 787, 788, 790, 793, 796, 797, 799, 800, 802, 803, 804, 806, 807, 808, 810, 812, 813, 814, 818, 819, 823, 824, 825, 827, 828, 829, 830, 832, 835, 838, 839, 841, 844, 848, 849, 850, 851, 853, 857, 858, 859, 860, 861, 866, 867, 869, 870, 873, 874, 875, 876, 877, 878, 879, 886, 888, 889, 891, 892, 893, 895, 896, 897, 898, 901, 902, 905, 907, 909, 911, 912, 915, 917, 918, 922, 923, 924, 926, 927, 928, 929, 930, 931, 932, 934, 935, 943, 944, 949, 950, 951, 953, 954, 956, 958, 961, 962, 963, 966, 967, 969, 970, 972, 973, 974, 975, 977, 980, 981, 983, 985, 986, 991, 993, 994, 996, 1000, 1001, 1004, 1005, 1006, 1010, 1013, 1015, 1017, 1019, 1022, 1023, 1025, 1027, 1030, 1031, 1034, 1037, 1038, 1039, 1042, 1043, 1044, 1046, 1047, 1049, 1050, 1051, 1056, 1057, 1058, 1061, 1062, 1063, 1064, 1065, 1067, 1068, 1071, 1072, 1076, 1077, 1078, 1080, 1082, 1084, 1086, 1087, 1092, 1094, 1098, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1115, 1119, 1123, 1124, 1128, 1131, 1133, 1134, 1135, 1136, 1137 ] }
bike_share_1
What is the average duration of a bike trip made on the day with the hottest temperature ever in 2014?
average duration = DIVIDE(SUM(duration), COUNT(id)); hottest temperature refers to max_temperature_f; in 2014 refers to date LIKE '%2014';
SELECT AVG(T1.duration) FROM trip AS T1 INNER JOIN weather AS T2 ON T2.zip_code = T1.zip_code WHERE T2.date LIKE '%2014%' AND T1.start_station_name = '2nd at Folsom' AND T2.max_temperature_f = ( SELECT max_temperature_f FROM weather ORDER BY max_temperature_f DESC LIMIT 1 )
CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,073
9,073
CREATE TABLE `trip` ( duration INTEGER, start_station_name TEXT, zip_code INTEGER ) CREATE TABLE `weather` ( CREATE TABLE "weather" date TEXT, max_temperature_f INTEGER, zip_code TEXT )
[ "AS", "AND", "SELECT", "LIKE", "LIMIT", "ORDER BY", "INNER JOIN", "ON", "AVG", "DESC", "FROM" ]
15
medium
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ -1 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 1, 3, 4, 5, 8, 10, 11, 12, 19, 20, 21, 22, 24, 26, 29, 30, 33, 36, 37, 38, 39, 44, 45, 47, 49, 51, 52, 53, 55, 57, 59, 62, 63, 66, 68, 69, 71, 73, 74, 75, 76, 80, 81, 82, 85, 86, 88, 89, 90, 93, 95, 96, 98, 99, 111, 112, 113, 115, 116, 117, 118, 119, 121, 125, 126, 127, 128, 129, 131, 136, 137, 138, 141, 142, 143, 144, 146, 150, 152, 154, 158, 159, 160, 162, 163, 164, 167, 169, 170, 172, 175, 176, 177, 179, 180, 183, 184, 187, 188, 197, 199, 200, 202, 206, 211, 212, 213, 214, 219, 220, 227, 229, 232, 233, 235, 239, 240, 244, 246, 247, 256, 258, 262, 263, 264, 265, 266, 267, 268, 272, 275, 276, 277, 278, 281, 282, 286, 295, 296, 301, 309, 311, 313, 314, 315, 317, 319, 320, 322, 324, 325, 329, 330, 333, 334, 336, 339, 341, 342, 345, 348, 349, 353, 356, 361, 364, 365, 368, 370, 373, 374, 376, 378, 379, 381, 382, 383, 385, 391, 393, 394, 395, 398, 402, 403, 405, 406, 407, 408, 409, 411, 413, 414, 415, 416, 417, 419, 424, 425, 426, 427, 428, 429, 430, 433, 434, 435, 436, 437, 438, 440, 444, 445, 446, 448, 451, 452, 454, 455, 460, 462, 463, 464, 469, 470, 475, 476, 477, 480, 482, 490, 493, 494, 495, 496, 497, 498, 500, 505, 507, 514, 515, 516, 519, 520, 522, 524, 526, 528, 529, 530, 532, 533, 536, 537, 538, 539, 541, 542, 544, 548, 552, 557, 558, 559, 560, 561, 562, 563, 566, 567, 578, 579, 581, 582, 584, 586, 588, 589, 590, 592, 595, 605, 608, 610, 611, 612, 613, 615, 621, 624, 625, 626, 627, 632, 633, 634, 637, 638, 641, 643, 645, 648, 651, 654, 657, 659, 663, 665, 666, 668, 669, 671, 675, 677, 678, 681, 683, 684, 685, 686, 687, 688, 690, 691, 693, 696, 697, 699, 701, 702, 704, 712, 714, 715, 719, 726, 727, 733, 734, 735, 736, 739, 740, 741, 743, 746, 747, 749, 752, 753, 754, 756, 758, 759, 760, 763, 765, 767, 768, 773, 774, 775, 776, 777, 778, 780, 783, 784, 787, 788, 790, 793, 796, 797, 799, 800, 803, 804, 806, 807, 808, 810, 814, 818, 819, 823, 824, 825, 827, 828, 829, 830, 832, 833, 835, 838, 841, 844, 848, 849, 850, 851, 853, 858, 859, 860, 861, 862, 863, 866, 867, 870, 873, 875, 876, 877, 878, 879, 886, 888, 889, 891, 892, 893, 895, 896, 901, 902, 905, 907, 909, 911, 917, 918, 922, 923, 924, 927, 928, 929, 930, 931, 932, 934, 935, 944, 949, 950, 951, 953, 954, 956, 958, 961, 962, 963, 966, 967, 969, 970, 973, 974, 975, 977, 980, 981, 985, 986, 991, 994, 996, 1000, 1001, 1004, 1005, 1006, 1010, 1013, 1017, 1019, 1022, 1023, 1025, 1027, 1031, 1034, 1037, 1038, 1039, 1042, 1044, 1046, 1047, 1049, 1050, 1051, 1056, 1057, 1058, 1060, 1061, 1063, 1064, 1065, 1067, 1068, 1071, 1072, 1080, 1084, 1086, 1092, 1094, 1098, 1100, 1101, 1103, 1104, 1105, 1109, 1111, 1115, 1119, 1123, 1124, 1128, 1131, 1136, 1137 ] }
bike_share_1
List out all end stations for a bicycle that were making a trip starting from 2nd at South Park station? Only retain the unique value.
end station refers to end_station_name; starting from refers to start_station_name; start_station_name = '2nd at South Park';
SELECT DISTINCT end_station_name FROM trip WHERE start_station_name = '2nd at South Park'
CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,074
9,074
CREATE TABLE `trip` ( start_station_name TEXT, end_station_name TEXT )
[ "SELECT", "FROM" ]
2
simple
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ 178, 947, 1009 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141 ] }
bike_share_1
How many rainy days were recorded in Mountain View?
rainy days refers to events = 'rain'; Mountain View refers to zip_code = 94041;
SELECT SUM(IIF(zip_code = 94041 AND events = 'Rain', 1, 0)) FROM weather
CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,075
9,075
CREATE TABLE `weather` ( zip_code TEXT )
[ "AND", "SELECT", "FROM", "SUM" ]
4
simple
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ 1009 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 2, 4, 5, 6, 8, 10, 12, 19, 20, 21, 22, 24, 26, 30, 32, 33, 35, 37, 38, 39, 40, 42, 43, 44, 45, 47, 50, 51, 52, 53, 54, 56, 57, 61, 63, 64, 66, 67, 68, 69, 71, 73, 74, 75, 76, 77, 79, 81, 83, 85, 87, 88, 90, 93, 94, 95, 96, 98, 99, 100, 104, 109, 111, 112, 113, 115, 116, 117, 118, 119, 120, 122, 125, 127, 128, 129, 131, 138, 141, 142, 143, 144, 146, 148, 152, 153, 154, 155, 158, 160, 163, 164, 168, 169, 170, 172, 173, 175, 176, 177, 180, 183, 184, 186, 187, 189, 191, 192, 195, 197, 200, 201, 205, 207, 212, 213, 214, 215, 219, 223, 225, 226, 227, 228, 230, 234, 236, 239, 240, 244, 245, 248, 254, 255, 256, 258, 259, 261, 262, 264, 265, 266, 267, 268, 270, 271, 272, 275, 276, 277, 278, 279, 282, 285, 294, 296, 300, 301, 304, 305, 313, 314, 315, 316, 317, 319, 323, 325, 330, 335, 339, 341, 347, 350, 356, 360, 361, 362, 363, 365, 367, 368, 370, 374, 376, 378, 379, 381, 382, 383, 385, 391, 393, 395, 398, 399, 402, 403, 405, 406, 408, 409, 412, 413, 414, 415, 416, 417, 418, 419, 421, 424, 425, 426, 427, 428, 433, 436, 437, 438, 439, 440, 444, 446, 448, 450, 451, 452, 453, 455, 463, 464, 469, 470, 475, 476, 477, 480, 482, 483, 486, 487, 488, 490, 492, 493, 494, 496, 497, 498, 500, 504, 506, 507, 510, 512, 514, 515, 516, 517, 518, 519, 520, 522, 524, 526, 527, 528, 529, 530, 533, 535, 537, 539, 540, 541, 544, 547, 550, 551, 554, 557, 558, 559, 561, 562, 563, 564, 571, 575, 579, 580, 581, 582, 584, 586, 588, 589, 591, 594, 595, 597, 599, 601, 605, 608, 609, 610, 612, 613, 615, 618, 622, 623, 624, 625, 626, 627, 628, 630, 632, 633, 637, 638, 640, 641, 643, 648, 650, 651, 656, 658, 662, 663, 666, 667, 668, 671, 675, 676, 677, 678, 679, 680, 682, 683, 684, 685, 686, 687, 690, 692, 693, 695, 697, 699, 701, 702, 707, 709, 710, 712, 714, 715, 716, 717, 718, 719, 723, 726, 727, 730, 734, 735, 739, 740, 741, 743, 744, 745, 746, 747, 749, 750, 753, 754, 756, 758, 760, 762, 763, 765, 767, 768, 773, 775, 776, 777, 780, 783, 785, 787, 788, 793, 794, 795, 796, 797, 798, 799, 800, 802, 804, 806, 807, 808, 810, 813, 814, 817, 819, 820, 823, 824, 825, 827, 829, 830, 831, 832, 835, 838, 840, 841, 843, 844, 848, 849, 851, 853, 855, 858, 859, 860, 861, 864, 867, 868, 870, 871, 872, 873, 874, 877, 878, 879, 886, 888, 892, 894, 895, 896, 902, 903, 905, 907, 909, 912, 913, 917, 920, 922, 923, 924, 928, 929, 930, 931, 932, 935, 939, 943, 944, 945, 949, 953, 954, 956, 958, 959, 961, 962, 965, 969, 973, 974, 979, 985, 986, 987, 991, 996, 998, 1000, 1001, 1008, 1009, 1012, 1014, 1017, 1018, 1019, 1020, 1022, 1023, 1027, 1031, 1038, 1039, 1042, 1044, 1046, 1058, 1059, 1061, 1063, 1064, 1067, 1068, 1069, 1071, 1072, 1073, 1078, 1079, 1080, 1081, 1082, 1084, 1086, 1087, 1092, 1093, 1098, 1100, 1101, 1103, 1104, 1105, 1109, 1110, 1115, 1117, 1119, 1121, 1123, 1126, 1128, 1131, 1135, 1136 ] }
bike_share_1
What is the total number of bikes that can be hold in Redwood City before 2014.
total number of bikes that can be hold = MAX(dock_count); before 2014 refers to year(installation_date)<2014;
SELECT SUM(CASE WHEN city = 'Redwood City' AND SUBSTR(installation_date, -4) < '2014' THEN dock_count ELSE 0 END) NUM FROM station
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,076
9,076
CREATE TABLE `station` ( lat REAL, dock_count INTEGER, city TEXT, installation_date TEXT )
[ "CASE WHEN", "AND", "SELECT", "SUM", "CASE", "SUBSTR", "FROM" ]
7
simple
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ -1 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 6, 16, 24, 39, 42, 50, 54, 61, 64, 71, 77, 81, 93, 104, 106, 112, 113, 120, 122, 127, 129, 141, 148, 152, 153, 155, 158, 169, 173, 184, 189, 191, 192, 195, 201, 205, 207, 212, 215, 219, 223, 225, 226, 234, 236, 245, 248, 258, 261, 264, 267, 271, 279, 299, 300, 304, 305, 317, 322, 335, 347, 350, 356, 360, 362, 375, 382, 383, 393, 398, 402, 406, 409, 412, 415, 418, 423, 427, 438, 448, 451, 452, 453, 458, 470, 476, 478, 485, 486, 500, 504, 508, 510, 514, 517, 518, 528, 535, 537, 540, 547, 550, 554, 563, 564, 571, 573, 575, 580, 581, 601, 612, 620, 623, 628, 640, 646, 662, 666, 676, 682, 686, 690, 709, 710, 723, 740, 744, 747, 753, 762, 772, 776, 777, 787, 788, 795, 796, 798, 800, 808, 810, 825, 827, 832, 841, 844, 848, 868, 870, 871, 872, 874, 896, 909, 912, 922, 924, 926, 939, 943, 944, 958, 959, 979, 985, 998, 1008, 1012, 1023, 1027, 1031, 1036, 1048, 1062, 1064, 1068, 1069, 1078, 1082, 1087, 1092, 1093, 1098, 1100, 1110, 1121, 1129, 1131, 1133, 1134, 1135 ] }
bike_share_1
What is the longest trip duration according? Convert the it to number of days.
longest trip duration refers to MAX(duration); days conversion = DIVIDE(duration, 86400);
SELECT MAX(duration), CAST(MAX(duration) AS REAL) / 86400 FROM trip
CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,077
9,077
CREATE TABLE `trip` ( duration INTEGER )
[ "AS", "SELECT", "CAST", "FROM", "MAX" ]
6
simple
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ 178 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 31, 33, 34, 35, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 61, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 101, 102, 104, 105, 106, 107, 109, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 123, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 215, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 286, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 367, 368, 369, 370, 373, 374, 375, 376, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 419, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 462, 463, 464, 465, 466, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 504, 505, 506, 507, 508, 509, 510, 511, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 526, 527, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 542, 544, 547, 548, 550, 552, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 601, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 657, 658, 659, 660, 661, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 786, 787, 788, 790, 792, 793, 795, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 820, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 842, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 856, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 978, 980, 981, 982, 984, 985, 986, 988, 991, 993, 994, 996, 997, 998, 999, 1000, 1001, 1003, 1004, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1026, 1027, 1028, 1029, 1031, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1113, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138 ] }
bike_share_1
Convert all temperature recorded at San Francisco city during August 2013 into degree Celsius.
temperature refers to max_temperature_f; March 2013 refers to date like '3/%/2013'; conversion to Celcius = DIVIDE(SUBTRACT(max_temperature_f, 32), 1.800) as Celsius1; DIVIDE(SUBTRACT(mean_temperature_f, 32), 1.800) as Celsius2; DIVIDE(SUBTRACT(min_temperature_f, 32), 1.800) as Celcius3;
SELECT (max_temperature_f - 32) / 1.8000 , (mean_temperature_f - 32) / 1.8000 , (min_temperature_f - 32) / 1.8000 FROM weather WHERE SUBSTR(CAST(date AS TEXT), 1, INSTR(date, '/') - 1) = '8' AND SUBSTR(CAST(date AS TEXT), -4) = '2013' AND zip_code = 94107
CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,078
9,078
CREATE TABLE `weather` ( max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, zip_code TEXT )
[ "AS", "AND", "SELECT", "INSTR", "SUBSTR", "CAST", "FROM" ]
11
medium
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ -1 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 2, 4, 5, 6, 8, 10, 12, 16, 19, 20, 21, 22, 24, 26, 30, 33, 35, 37, 39, 44, 45, 47, 50, 51, 52, 53, 57, 61, 63, 64, 66, 68, 69, 71, 73, 74, 75, 76, 77, 85, 87, 88, 89, 90, 93, 95, 96, 98, 99, 106, 111, 112, 113, 115, 116, 117, 118, 119, 120, 125, 127, 128, 129, 131, 138, 141, 142, 143, 144, 146, 148, 152, 154, 158, 160, 163, 164, 169, 170, 172, 175, 176, 177, 180, 183, 184, 187, 189, 192, 195, 197, 200, 201, 212, 214, 215, 219, 223, 225, 226, 227, 234, 236, 239, 240, 244, 248, 254, 256, 258, 261, 262, 264, 265, 266, 267, 268, 271, 272, 275, 276, 277, 278, 282, 296, 300, 301, 304, 305, 314, 315, 316, 317, 319, 322, 323, 325, 330, 335, 339, 341, 347, 356, 360, 361, 367, 368, 370, 374, 375, 376, 380, 382, 383, 385, 391, 393, 395, 398, 402, 403, 405, 406, 408, 409, 412, 413, 414, 416, 417, 418, 419, 423, 424, 425, 426, 427, 428, 433, 436, 437, 438, 440, 444, 446, 448, 451, 452, 453, 455, 458, 463, 464, 469, 470, 475, 476, 477, 478, 480, 482, 483, 485, 487, 490, 493, 494, 496, 497, 498, 500, 504, 507, 510, 514, 515, 516, 517, 519, 520, 522, 524, 526, 527, 528, 529, 530, 533, 535, 537, 539, 540, 541, 544, 547, 554, 557, 558, 559, 560, 561, 562, 563, 564, 575, 580, 581, 582, 584, 586, 588, 589, 595, 597, 601, 605, 608, 610, 612, 613, 615, 620, 623, 624, 625, 626, 627, 632, 633, 637, 641, 643, 648, 651, 658, 661, 662, 663, 666, 668, 671, 675, 676, 677, 678, 683, 684, 685, 686, 687, 690, 693, 697, 699, 702, 710, 712, 714, 715, 726, 727, 734, 735, 739, 740, 741, 743, 744, 746, 747, 749, 750, 753, 754, 756, 758, 760, 762, 763, 765, 767, 768, 772, 773, 775, 776, 777, 780, 783, 787, 788, 793, 795, 796, 797, 798, 799, 800, 802, 804, 806, 807, 808, 810, 813, 814, 819, 824, 825, 829, 830, 832, 835, 838, 841, 844, 848, 849, 851, 853, 858, 859, 860, 861, 867, 870, 873, 874, 877, 878, 879, 886, 888, 892, 894, 895, 896, 898, 902, 905, 907, 909, 912, 913, 917, 922, 923, 924, 926, 928, 930, 931, 932, 935, 943, 944, 949, 953, 954, 956, 958, 959, 961, 969, 974, 985, 986, 991, 996, 998, 1000, 1001, 1004, 1008, 1017, 1019, 1022, 1023, 1027, 1031, 1039, 1042, 1044, 1046, 1058, 1061, 1062, 1063, 1064, 1067, 1068, 1069, 1070, 1071, 1072, 1075, 1078, 1080, 1082, 1084, 1086, 1087, 1092, 1097, 1100, 1101, 1103, 1104, 1105, 1109, 1115, 1119, 1121, 1123, 1128, 1131, 1136 ] }
bike_share_1
What is the ratio for subscriber to customer given that the starting and the ending stations is 2nd at South Park?
subscriber refers to subscription_type = 'Subscriber'; customer refers to subscription_type = 'customer';starting station refers to start_station_name; ending station refers to end_statio_name; start_station_name = '2nd at South Park' AND end_station_name = '2nd at South Park'
SELECT CAST(SUM(IIF(subscription_type = 'Subscriber', 1, 0)) AS REAL) / SUM(IIF(subscription_type = 'Customer', 1, 0)) FROM trip WHERE start_station_name = '2nd at South Park' AND end_station_name = '2nd at South Park'
CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,079
9,079
CREATE TABLE `trip` ( start_station_name TEXT, end_station_name TEXT, subscription_type TEXT )
[ "AS", "AND", "SELECT", "SUM", "CAST", "FROM" ]
7
simple
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ -1 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 2, 4, 5, 6, 8, 10, 12, 16, 19, 20, 21, 22, 24, 26, 30, 33, 35, 37, 39, 42, 44, 45, 47, 51, 52, 53, 57, 61, 63, 64, 66, 68, 69, 71, 73, 74, 75, 76, 77, 81, 83, 85, 87, 88, 90, 93, 94, 95, 96, 98, 99, 104, 106, 111, 112, 113, 115, 116, 117, 118, 119, 120, 125, 127, 128, 129, 131, 138, 141, 142, 143, 144, 146, 148, 152, 153, 154, 155, 158, 160, 163, 164, 169, 170, 172, 175, 176, 177, 180, 183, 184, 186, 187, 189, 191, 192, 195, 197, 200, 201, 207, 212, 213, 214, 215, 219, 223, 225, 226, 227, 228, 234, 236, 239, 240, 244, 248, 254, 256, 258, 261, 262, 264, 265, 266, 267, 268, 271, 272, 275, 276, 277, 278, 279, 282, 296, 300, 301, 304, 305, 313, 314, 315, 316, 317, 319, 322, 323, 325, 330, 335, 339, 341, 347, 350, 356, 360, 361, 363, 365, 367, 368, 370, 374, 375, 376, 378, 379, 380, 381, 382, 383, 385, 391, 393, 395, 398, 402, 403, 405, 406, 408, 409, 412, 413, 414, 415, 416, 417, 419, 423, 424, 425, 426, 427, 428, 433, 436, 437, 438, 440, 444, 446, 448, 450, 451, 452, 453, 455, 458, 463, 464, 469, 470, 475, 476, 477, 478, 480, 482, 483, 485, 486, 487, 488, 490, 493, 494, 496, 497, 498, 500, 504, 506, 507, 510, 514, 515, 516, 517, 518, 519, 520, 522, 524, 526, 527, 528, 529, 530, 533, 535, 537, 539, 540, 541, 544, 547, 550, 557, 558, 559, 560, 561, 562, 563, 564, 571, 575, 579, 580, 581, 582, 584, 586, 588, 589, 595, 597, 601, 605, 608, 609, 610, 612, 613, 615, 620, 623, 624, 625, 626, 627, 628, 630, 632, 633, 637, 638, 640, 641, 643, 648, 650, 651, 658, 661, 662, 663, 666, 668, 671, 675, 676, 677, 678, 682, 683, 684, 685, 686, 687, 690, 693, 695, 697, 699, 701, 702, 710, 712, 714, 715, 717, 723, 726, 727, 734, 735, 739, 740, 741, 743, 744, 745, 746, 747, 749, 750, 753, 754, 756, 758, 760, 762, 763, 765, 767, 768, 772, 773, 775, 776, 777, 780, 783, 787, 788, 793, 795, 796, 797, 798, 799, 800, 802, 804, 806, 807, 808, 810, 813, 814, 819, 823, 824, 825, 827, 829, 830, 832, 835, 838, 841, 844, 848, 849, 851, 853, 858, 859, 860, 861, 867, 868, 870, 871, 873, 874, 877, 878, 879, 886, 888, 892, 894, 895, 896, 898, 902, 905, 907, 909, 912, 913, 917, 922, 923, 924, 926, 928, 929, 930, 931, 932, 935, 943, 944, 949, 953, 954, 956, 958, 959, 961, 962, 969, 973, 974, 985, 986, 991, 996, 998, 1000, 1001, 1004, 1008, 1012, 1017, 1019, 1022, 1023, 1027, 1031, 1038, 1039, 1042, 1044, 1046, 1058, 1061, 1062, 1063, 1064, 1067, 1068, 1069, 1070, 1071, 1072, 1075, 1078, 1080, 1082, 1084, 1086, 1087, 1092, 1098, 1100, 1101, 1103, 1104, 1105, 1109, 1115, 1119, 1121, 1123, 1128, 1131, 1135, 1136 ] }
bike_share_1
Are all stations with zip code 94107 located in San Francisco city?
station refers to name;
SELECT DISTINCT T2.city FROM trip AS T1 INNER JOIN station AS T2 ON T2.name = T1.start_station_name WHERE T1.zip_code = 94107
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,080
9,080
CREATE TABLE `station` ( name TEXT, city TEXT ) CREATE TABLE `trip` ( start_station_name TEXT, zip_code INTEGER )
[ "AS", "SELECT", "INNER JOIN", "ON", "FROM" ]
6
simple
{ "case_1": [ 178 ], "case_2": [ 178 ], "case_3": [ 178 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 35, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 61, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 101, 102, 104, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 215, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 271, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 286, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 367, 368, 369, 370, 373, 374, 375, 376, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 462, 463, 464, 465, 466, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 504, 505, 506, 507, 508, 509, 510, 511, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 526, 527, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 542, 544, 547, 548, 550, 552, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 601, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 657, 658, 659, 660, 661, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 786, 787, 788, 790, 792, 793, 795, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 978, 980, 981, 982, 985, 986, 988, 991, 993, 994, 996, 997, 998, 999, 1000, 1001, 1003, 1004, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1074, 1075, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1113, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
bike_share_1
List out all stations name that having a mean temperature 20 degree Celsius in year 2014.
mean temperature refers to mean_temperature_f; mean temperature of 20 degree Celsius refers to DIVIDE(SUBTRACT(mean_temperature_f, 32), 1.8) = 20; in 2014 refers to date LIKE'%2015%';
SELECT DISTINCT T2.start_station_name, T2.end_station_name FROM weather AS T1 INNER JOIN trip AS T2 ON T1.zip_code = T2.zip_code WHERE T1.date LIKE '%2014' AND T1.mean_temperature_f = 20 * 1.8 + 32
CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,081
9,081
CREATE TABLE `trip` ( start_station_name TEXT, end_station_name TEXT, zip_code INTEGER ) CREATE TABLE `weather` ( CREATE TABLE "weather" date TEXT, mean_temperature_f INTEGER, zip_code TEXT )
[ "AS", "AND", "SELECT", "LIKE", "INNER JOIN", "ON", "FROM" ]
8
simple
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ 178 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 36, 37, 38, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 88, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 367, 368, 369, 370, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 421, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 447, 448, 449, 450, 451, 452, 454, 455, 456, 457, 459, 460, 462, 463, 464, 465, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 505, 507, 509, 510, 511, 514, 515, 516, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 544, 547, 548, 550, 552, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 591, 592, 593, 595, 596, 597, 600, 601, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 998, 999, 1000, 1001, 1003, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1018, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1070, 1071, 1072, 1074, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1117, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
bike_share_1
How many bicycle trip were made within San Jose city during August 2013?
during August 2013 refers to start_date like '8/%/2013%';
SELECT COUNT(T2.id) FROM station AS T1 INNER JOIN trip AS T2 ON T2.start_station_name = T1.name WHERE T1.city = 'San Jose' AND T2.start_date LIKE '8/%/2013%' AND T2.start_station_name LIKE 'San Jose%' AND T2.end_station_name LIKE 'San Jose%'
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,082
9,082
CREATE TABLE `station` ( CREATE TABLE "station" id INTEGER not null primary key, name TEXT, city TEXT ) CREATE TABLE `trip` ( CREATE TABLE "trip" id INTEGER not null primary key, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER )
[ "AS", "AND", "SELECT", "LIKE", "INNER JOIN", "ON", "COUNT", "FROM" ]
13
medium
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ -1 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 88, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 368, 369, 370, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 421, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 447, 448, 449, 450, 451, 452, 454, 455, 456, 457, 459, 460, 462, 463, 464, 465, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 505, 507, 509, 510, 511, 514, 515, 516, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 544, 547, 548, 550, 552, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 591, 592, 593, 595, 596, 597, 600, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 999, 1000, 1001, 1003, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1070, 1071, 1072, 1074, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
bike_share_1
Is there any intercity trip were made during 2014? If yes, list out the city name for the start and end station.
intercity trip refers to start_station_name! = end_station_name; during 2014 refers to start_date like '%2014%'; start station refers to start_station_name; end station refers to end_station_name;
SELECT T1.start_station_name, T1.end_station_name FROM trip AS T1 LEFT JOIN station AS T2 ON T2.name = T1.start_station_name WHERE T1.start_date LIKE '%/%/2014%' AND T1.start_station_name != T1.end_station_name
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,083
9,083
CREATE TABLE `station` ( name TEXT ) CREATE TABLE `trip` ( start_date TEXT, start_station_name TEXT, end_station_name TEXT )
[ "AS", "AND", "SELECT", "LIKE", "ON", "LEFT JOIN", "FROM" ]
8
simple
{ "case_1": [ 178 ], "case_2": [ 178 ], "case_3": [ 178 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 36, 37, 38, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 88, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 367, 368, 369, 370, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 421, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 448, 449, 450, 451, 452, 454, 455, 456, 457, 459, 460, 462, 463, 464, 465, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 505, 507, 509, 510, 511, 514, 515, 516, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 544, 547, 548, 550, 552, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 591, 592, 593, 595, 596, 597, 600, 601, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 998, 999, 1000, 1001, 1003, 1005, 1006, 1008, 1010, 1012, 1013, 1015, 1016, 1017, 1018, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1070, 1071, 1072, 1074, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1117, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
bike_share_1
Does the bike with Id number 16 making any intercity trip? If yes, calculate the total travel duration during all the intercity trip. Convert the duration to hour.
intercity trip refers to start_station_name! = end_station_name; total travel duration to hour = DIVIDE(SUM(duration), 3600) AS hour;
SELECT T1.end_station_name, T2.city, CAST(SUM(T1.duration) AS REAL) / 3600 FROM trip AS T1 INNER JOIN station AS T2 ON T2.name = T1.start_station_name WHERE T1.bike_id = 16 AND T1.start_station_name != T1.end_station_name
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,084
9,084
CREATE TABLE `station` ( CREATE TABLE "station" id INTEGER not null primary key, name TEXT, city TEXT ) CREATE TABLE `trip` ( CREATE TABLE "trip" id INTEGER not null primary key, duration INTEGER, start_station_name TEXT, start_station_id INTEGER, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER )
[ "AS", "AND", "SELECT", "SUM", "INNER JOIN", "ON", "CAST", "FROM" ]
10
simple
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ -1 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 35, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 61, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 87, 88, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 215, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 271, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 367, 368, 369, 370, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 459, 460, 462, 463, 464, 465, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 504, 505, 507, 509, 510, 511, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 526, 527, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 544, 547, 548, 550, 552, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 795, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 998, 999, 1000, 1001, 1003, 1005, 1006, 1008, 1010, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1071, 1072, 1074, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
bike_share_1
What is the ratio of customer to subscriber that making a trip inside Mountain View city?
customer refers to subscription_type = 'customer'; subscriber refers to subscription_type = 'subscriber'; ratio = MULTIPLY(DIVIDE(COUNT(subscription_type = 'Customer'), COUNT(subscription_type = 'Subscriber'). 1.0)) AS ratio;
SELECT CAST(SUM(CASE WHEN T1.subscription_type = 'Customer' THEN 1 ELSE 0 END) AS REAL) * 100 / SUM(CASE WHEN T1.subscription_type = 'Subscriber' THEN 1 ELSE 0 END) FROM trip AS T1 LEFT JOIN station AS T2 ON T2.name = T1.start_station_name WHERE T2.city = 'Mountain View'
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,085
9,085
CREATE TABLE `station` ( name TEXT, city TEXT ) CREATE TABLE `trip` ( start_station_name TEXT, subscription_type TEXT )
[ "CASE WHEN", "AS", "SELECT", "SUM", "CASE", "ON", "CAST", "LEFT JOIN", "FROM" ]
14
medium
{ "case_1": [ -1 ], "case_2": [ 178 ], "case_3": [ 178 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 6, 16, 24, 35, 39, 42, 54, 61, 64, 71, 77, 81, 83, 87, 93, 94, 104, 106, 112, 113, 119, 120, 122, 127, 129, 141, 148, 152, 153, 155, 158, 169, 171, 173, 178, 184, 186, 189, 191, 192, 195, 201, 205, 207, 212, 213, 215, 219, 223, 225, 226, 228, 234, 236, 245, 248, 254, 258, 261, 264, 267, 271, 278, 279, 298, 299, 300, 304, 313, 316, 317, 322, 323, 335, 347, 356, 360, 363, 365, 375, 378, 379, 381, 383, 393, 398, 402, 406, 409, 412, 415, 423, 427, 438, 448, 450, 451, 452, 453, 458, 470, 476, 478, 479, 483, 485, 486, 487, 488, 500, 504, 508, 510, 514, 517, 518, 527, 528, 535, 537, 540, 547, 550, 560, 563, 564, 571, 573, 575, 579, 580, 581, 597, 609, 612, 620, 623, 628, 630, 638, 640, 646, 650, 658, 662, 666, 672, 676, 682, 686, 690, 695, 701, 706, 709, 710, 717, 723, 740, 744, 745, 747, 750, 753, 762, 772, 776, 777, 787, 788, 795, 796, 798, 800, 802, 805, 808, 810, 813, 823, 825, 827, 832, 841, 844, 848, 868, 870, 871, 872, 874, 880, 894, 896, 898, 909, 912, 913, 922, 924, 926, 939, 941, 943, 944, 958, 959, 962, 973, 979, 985, 998, 1008, 1012, 1023, 1027, 1031, 1036, 1038, 1048, 1062, 1064, 1066, 1068, 1069, 1072, 1078, 1082, 1087, 1092, 1093, 1098, 1100, 1110, 1121, 1128, 1129, 1131, 1133, 1134, 1135 ] }
bike_share_1
What is the total trip duration made within Palo Alto city? Convert the duration to hour.
total trip duration to hour = DIVIDE(SUM(duration), 3600);
SELECT CAST(SUM(T1.duration) AS REAL) / 3600 FROM trip AS T1 LEFT JOIN station AS T2 ON T2.name = T1.start_station_name WHERE T2.city = 'Palo Alto'
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,086
9,086
CREATE TABLE `station` ( name TEXT, city TEXT ) CREATE TABLE `trip` ( duration INTEGER, start_station_name TEXT )
[ "AS", "SELECT", "SUM", "ON", "CAST", "LEFT JOIN", "FROM" ]
9
simple
{ "case_1": [ 178 ], "case_2": [ 178 ], "case_3": [ 178 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 35, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 61, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 87, 88, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 104, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 215, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 271, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 367, 368, 369, 370, 373, 374, 375, 376, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 462, 463, 464, 465, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 504, 505, 506, 507, 509, 510, 511, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 526, 527, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 544, 547, 548, 550, 552, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 661, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 795, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 998, 999, 1000, 1001, 1003, 1004, 1005, 1006, 1008, 1010, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1074, 1075, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
bike_share_1
Which bicycle is the least used bike. Check if the start and end station are from the same city and calculate the total duration travelled by the bicycle in hours for a trip made within the same city.
least used bike refers to bike_id with MIN(COUNT(main_trip.id)); start station refers to start_station_name; end station refers to end_station_name; total duration in hour = DIVIDE(duration, 3600) AS hour;
SELECT T2.bike_id, T2.start_station_name, T2.end_station_name, T1.city , CAST(T2.duration AS REAL) / 3600 FROM station AS T1 INNER JOIN trip AS T2 ON T1.name = T2.start_station_name GROUP BY T2.bike_id ORDER BY COUNT(T2.id) DESC LIMIT 1
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,087
9,087
CREATE TABLE `station` ( CREATE TABLE "station" id INTEGER not null primary key, name TEXT, city TEXT ) CREATE TABLE `trip` ( CREATE TABLE "trip" id INTEGER not null primary key, duration INTEGER, start_station_name TEXT, start_station_id INTEGER, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER )
[ "GROUP BY", "AS", "SELECT", "ORDER BY", "LIMIT", "INNER JOIN", "ON", "DESC", "CAST", "COUNT", "FROM" ]
13
medium
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ -1 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 4, 6, 10, 11, 13, 15, 16, 20, 22, 24, 27, 28, 29, 30, 36, 37, 47, 49, 51, 53, 55, 59, 62, 63, 64, 68, 69, 73, 74, 75, 77, 78, 82, 86, 88, 89, 91, 93, 96, 98, 106, 108, 113, 115, 117, 118, 119, 120, 121, 125, 126, 131, 138, 140, 142, 143, 146, 148, 150, 152, 159, 160, 162, 163, 164, 167, 169, 170, 173, 175, 179, 183, 184, 185, 187, 188, 189, 190, 191, 195, 196, 197, 199, 200, 201, 202, 206, 212, 213, 214, 225, 226, 227, 229, 233, 234, 236, 239, 243, 244, 247, 248, 252, 254, 256, 261, 262, 264, 267, 268, 269, 275, 276, 277, 278, 281, 285, 286, 291, 299, 300, 301, 304, 309, 311, 313, 314, 316, 317, 319, 320, 322, 323, 324, 325, 329, 330, 334, 335, 336, 338, 339, 341, 342, 344, 345, 347, 348, 349, 352, 353, 354, 356, 358, 359, 360, 364, 365, 370, 371, 373, 374, 375, 378, 379, 381, 382, 383, 384, 385, 391, 392, 394, 395, 401, 403, 406, 409, 411, 412, 416, 417, 424, 426, 428, 429, 434, 435, 436, 444, 445, 448, 451, 452, 454, 460, 462, 464, 465, 467, 469, 471, 473, 476, 477, 478, 482, 483, 484, 487, 488, 490, 493, 495, 497, 500, 505, 509, 515, 516, 519, 520, 526, 530, 532, 535, 536, 537, 538, 540, 542, 544, 547, 548, 552, 558, 559, 560, 563, 564, 566, 567, 573, 575, 578, 579, 580, 581, 582, 584, 586, 590, 592, 595, 596, 597, 606, 608, 611, 613, 620, 621, 623, 625, 626, 627, 630, 632, 633, 634, 637, 638, 641, 645, 646, 649, 651, 654, 657, 658, 659, 662, 663, 664, 665, 668, 669, 671, 676, 681, 686, 687, 688, 690, 691, 694, 696, 698, 701, 703, 705, 710, 712, 714, 719, 720, 721, 727, 733, 734, 735, 736, 739, 740, 743, 744, 748, 749, 750, 751, 752, 753, 756, 759, 760, 762, 768, 769, 772, 778, 779, 787, 790, 796, 797, 799, 800, 802, 803, 804, 808, 810, 812, 813, 814, 818, 819, 823, 824, 827, 830, 832, 838, 839, 841, 849, 850, 851, 853, 857, 861, 866, 867, 869, 870, 874, 876, 877, 882, 886, 888, 889, 891, 893, 894, 896, 897, 898, 901, 902, 909, 911, 912, 915, 917, 918, 922, 923, 924, 926, 927, 929, 930, 932, 934, 935, 943, 950, 951, 953, 954, 956, 958, 959, 961, 962, 963, 966, 967, 969, 970, 972, 973, 975, 977, 981, 983, 985, 986, 987, 993, 994, 996, 1004, 1005, 1006, 1010, 1013, 1015, 1017, 1022, 1023, 1025, 1030, 1034, 1037, 1038, 1042, 1043, 1047, 1049, 1050, 1051, 1056, 1057, 1058, 1062, 1064, 1065, 1067, 1068, 1070, 1071, 1072, 1076, 1077, 1078, 1082, 1084, 1086, 1087, 1091, 1094, 1100, 1101, 1103, 1104, 1106, 1112, 1119, 1123, 1124, 1128, 1131, 1133, 1134, 1135, 1137 ] }
bike_share_1
Count the number of subscribers who started their trips in Market at 4th.
subsscriber refers to subscription_type = subscriber; started their trips in refers to start_station_name; start_station_name = 'Market at 4th';
SELECT COUNT(CASE WHEN subscription_type = 'Subscriber' AND start_station_name = 'Market at 4th' THEN id END) FROM trip
CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,088
9,088
CREATE TABLE `trip` ( CREATE TABLE "trip" id INTEGER not null primary key, start_station_name TEXT, start_station_id INTEGER, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT )
[ "CASE WHEN", "AND", "SELECT", "CASE", "COUNT", "FROM" ]
6
simple
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ -1 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 2, 4, 6, 16, 22, 24, 30, 32, 37, 40, 42, 47, 51, 53, 54, 61, 63, 64, 67, 68, 69, 71, 73, 74, 75, 77, 81, 88, 93, 96, 98, 104, 106, 109, 113, 115, 117, 118, 119, 120, 122, 125, 127, 129, 131, 142, 143, 146, 148, 152, 153, 155, 158, 160, 164, 169, 170, 173, 175, 183, 184, 187, 191, 192, 195, 197, 201, 205, 207, 212, 214, 215, 219, 223, 225, 226, 227, 230, 234, 236, 244, 245, 248, 256, 258, 259, 261, 264, 267, 268, 271, 276, 277, 279, 294, 299, 300, 301, 303, 304, 305, 314, 317, 319, 322, 325, 330, 335, 339, 341, 347, 360, 362, 370, 374, 375, 382, 383, 391, 393, 398, 399, 402, 403, 406, 412, 415, 416, 417, 421, 423, 424, 426, 427, 436, 438, 443, 444, 448, 452, 453, 458, 464, 469, 476, 477, 478, 485, 486, 490, 493, 500, 504, 508, 510, 512, 514, 515, 516, 517, 518, 519, 520, 526, 528, 535, 537, 540, 544, 547, 550, 554, 558, 559, 563, 564, 571, 573, 575, 580, 581, 582, 591, 594, 595, 601, 608, 613, 618, 620, 623, 627, 628, 632, 633, 640, 641, 646, 656, 662, 663, 666, 667, 668, 671, 676, 680, 682, 686, 687, 692, 707, 709, 710, 712, 714, 718, 719, 723, 727, 730, 734, 735, 739, 740, 743, 744, 747, 749, 753, 756, 760, 762, 768, 772, 776, 787, 788, 795, 796, 797, 798, 799, 800, 804, 808, 814, 817, 819, 820, 824, 827, 830, 831, 838, 841, 843, 844, 848, 849, 851, 853, 867, 868, 870, 871, 872, 874, 877, 886, 888, 896, 902, 903, 909, 912, 917, 922, 923, 924, 926, 930, 935, 939, 941, 943, 944, 945, 954, 956, 958, 959, 961, 965, 969, 979, 985, 986, 996, 998, 1008, 1012, 1014, 1020, 1022, 1023, 1036, 1042, 1048, 1058, 1059, 1062, 1064, 1067, 1069, 1071, 1072, 1078, 1079, 1082, 1084, 1086, 1087, 1092, 1093, 1098, 1100, 1101, 1103, 1104, 1110, 1119, 1121, 1123, 1126, 1128, 1129, 1131, 1133, 1134, 1135 ] }
bike_share_1
List the names of the stations within Mountain View that were installed on 12/31/2013.
Mountain View refers to city = 'Mountain View'; installed on 12/31/2013 refers to installation_date = '12/31/2013';
SELECT name FROM station WHERE installation_date = '12/31/2013' AND city = 'Mountain View'
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,089
9,089
CREATE TABLE `station` ( name TEXT, lat REAL, city TEXT, installation_date TEXT )
[ "/", "AND", "SELECT", "FROM" ]
5
simple
{ "case_1": [ 1009 ], "case_2": [ 1009 ], "case_3": [ 1009 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 2, 4, 5, 8, 10, 12, 19, 20, 21, 22, 24, 26, 30, 32, 33, 37, 38, 39, 40, 43, 44, 45, 47, 50, 51, 52, 53, 56, 57, 63, 66, 67, 68, 69, 71, 73, 74, 75, 76, 79, 85, 88, 90, 93, 95, 96, 97, 98, 99, 100, 109, 111, 112, 113, 115, 116, 117, 118, 119, 125, 127, 128, 129, 131, 138, 141, 142, 143, 144, 146, 152, 154, 158, 160, 163, 164, 168, 169, 170, 172, 175, 176, 177, 180, 183, 184, 187, 197, 200, 214, 219, 223, 227, 230, 239, 240, 244, 255, 256, 258, 259, 262, 265, 266, 267, 268, 270, 272, 275, 276, 277, 278, 282, 294, 296, 301, 305, 314, 315, 317, 319, 325, 330, 339, 341, 350, 356, 361, 362, 367, 368, 370, 374, 376, 382, 383, 385, 391, 393, 395, 398, 399, 402, 403, 405, 406, 408, 413, 414, 416, 417, 418, 419, 421, 424, 425, 426, 427, 428, 433, 436, 437, 438, 439, 440, 444, 446, 448, 451, 452, 455, 463, 464, 469, 470, 475, 476, 477, 480, 482, 487, 490, 492, 493, 494, 496, 497, 498, 500, 507, 510, 512, 514, 515, 516, 519, 520, 522, 524, 526, 528, 529, 530, 533, 537, 539, 541, 544, 551, 554, 557, 558, 559, 561, 562, 563, 581, 582, 584, 586, 588, 589, 591, 594, 595, 599, 601, 605, 608, 610, 612, 613, 615, 618, 622, 624, 625, 626, 627, 632, 633, 636, 637, 641, 643, 648, 649, 651, 656, 663, 666, 667, 668, 671, 675, 677, 678, 679, 680, 683, 684, 685, 686, 687, 690, 692, 693, 697, 699, 702, 707, 712, 714, 715, 716, 718, 719, 726, 727, 730, 734, 735, 739, 740, 741, 743, 746, 747, 749, 753, 754, 756, 758, 760, 763, 765, 767, 768, 773, 775, 776, 777, 780, 783, 785, 788, 793, 794, 797, 798, 799, 800, 804, 806, 807, 808, 810, 813, 814, 817, 819, 820, 824, 825, 829, 830, 831, 832, 835, 838, 840, 843, 844, 848, 849, 851, 853, 855, 858, 859, 860, 861, 864, 865, 867, 870, 873, 877, 878, 879, 886, 888, 892, 895, 896, 902, 903, 905, 907, 917, 920, 923, 924, 928, 930, 931, 932, 935, 944, 945, 949, 953, 954, 956, 958, 961, 965, 969, 974, 985, 986, 991, 996, 998, 1000, 1001, 1008, 1009, 1014, 1017, 1018, 1019, 1020, 1022, 1023, 1027, 1031, 1039, 1042, 1044, 1046, 1058, 1059, 1061, 1063, 1064, 1066, 1067, 1068, 1071, 1072, 1073, 1079, 1080, 1081, 1084, 1086, 1092, 1100, 1101, 1103, 1104, 1105, 1109, 1115, 1117, 1119, 1121, 1123, 1126, 1128, 1131, 1136 ] }
bike_share_1
Which city is Townsend at 7th Station located and how many bikes could it hold?
Townsend at 7th Station refers to city = 'Townsend at 7th Station'; number of bikes a station can hold refers to SUM(dock_count);
SELECT city, SUM(dock_count) FROM station WHERE name = 'Townsend at 7th'
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,090
9,090
CREATE TABLE `station` ( name TEXT, dock_count INTEGER, city TEXT )
[ "SUM", "SELECT", "FROM" ]
3
simple
{ "case_1": [ 1009 ], "case_2": [ 1009 ], "case_3": [ 178, 947, 1009 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141 ] }
bike_share_1
How many bikes could Evelyn Park and Ride hold and how many users who started on that station are subscribers?
number of bikes a station can hold refers to SUM(dock_count); Evelyn Park and Ride refers to name = 'Evelyn Park and Ride'; started on the station refers to start_station_name; subscribers refers to subscription_type = 'subscriber';
SELECT SUM(T2.dock_count), COUNT(T1.subscription_type) FROM trip AS T1 INNER JOIN station AS T2 ON T2.name = T1.start_station_name WHERE T2.name = 'Evelyn Park and Ride' AND T1.start_station_name = T2.name AND T1.subscription_type = 'Subscriber'
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,091
9,091
CREATE TABLE `station` ( name TEXT, dock_count INTEGER ) CREATE TABLE `trip` ( start_station_name TEXT, subscription_type TEXT )
[ "AS", "AND", "SELECT", "SUM", "and", "INNER JOIN", "ON", "COUNT", "FROM" ]
11
medium
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ -1 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 35, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 61, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 87, 88, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 173, 175, 176, 177, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 271, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 368, 369, 370, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 459, 460, 462, 463, 464, 465, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 504, 505, 507, 509, 510, 511, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 544, 547, 548, 550, 552, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 795, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 998, 999, 1000, 1001, 1003, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1071, 1072, 1074, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
bike_share_1
How many subscribers are in the zip code of 94301 and what is the hottest temperature recorded on that zip code?
hottest temperature refers to MAX(max_temperature_f);
SELECT COUNT(T3.zip_code), T3.max_temperature_f FROM trip AS T2 INNER JOIN weather AS T3 ON T3.zip_code = T2.zip_code WHERE T3.zip_code = 94301 AND T2.subscription_type = 'Subscriber' ORDER BY T3.max_temperature_f DESC LIMIT 1
CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,092
9,092
CREATE TABLE `trip` ( subscription_type TEXT, zip_code INTEGER ) CREATE TABLE `weather` ( max_temperature_f INTEGER, zip_code TEXT )
[ "AS", "AND", "SELECT", "ORDER BY", "LIMIT", "INNER JOIN", "ON", "DESC", "COUNT", "FROM" ]
11
medium
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ -1 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 4, 5, 6, 8, 10, 11, 12, 13, 15, 16, 19, 20, 21, 22, 24, 26, 27, 28, 29, 30, 33, 36, 37, 38, 39, 44, 45, 47, 49, 51, 52, 53, 55, 57, 59, 62, 63, 66, 68, 69, 71, 73, 74, 75, 76, 77, 78, 82, 85, 86, 88, 89, 90, 91, 93, 95, 96, 98, 99, 106, 108, 111, 112, 113, 115, 116, 117, 118, 119, 121, 125, 126, 127, 128, 129, 131, 138, 140, 141, 142, 143, 144, 146, 148, 150, 152, 154, 158, 159, 160, 162, 163, 164, 167, 169, 170, 172, 173, 175, 176, 177, 179, 180, 183, 184, 185, 187, 188, 189, 190, 191, 196, 197, 199, 200, 202, 206, 212, 213, 214, 219, 225, 226, 227, 229, 233, 234, 239, 240, 243, 244, 247, 252, 254, 256, 258, 261, 262, 265, 266, 267, 268, 269, 272, 275, 276, 277, 278, 281, 282, 286, 291, 296, 299, 301, 309, 311, 313, 314, 315, 316, 317, 319, 320, 323, 324, 325, 329, 330, 334, 335, 336, 338, 339, 341, 342, 344, 345, 348, 349, 352, 353, 354, 356, 358, 359, 360, 361, 364, 365, 368, 370, 371, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 408, 409, 411, 412, 413, 414, 416, 417, 419, 424, 425, 426, 427, 428, 429, 433, 434, 435, 436, 437, 438, 440, 444, 445, 446, 448, 451, 452, 454, 455, 460, 462, 463, 464, 465, 467, 469, 470, 471, 473, 475, 476, 477, 478, 480, 482, 484, 487, 488, 490, 493, 494, 495, 496, 497, 498, 500, 505, 507, 509, 514, 515, 516, 519, 520, 522, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 541, 542, 544, 547, 548, 552, 557, 558, 559, 560, 561, 562, 563, 564, 566, 567, 573, 578, 579, 580, 581, 582, 584, 586, 588, 589, 590, 592, 595, 596, 597, 605, 606, 608, 610, 611, 612, 613, 615, 620, 621, 624, 625, 626, 627, 630, 632, 633, 634, 637, 638, 641, 643, 645, 646, 648, 649, 651, 654, 657, 658, 659, 662, 663, 664, 665, 666, 668, 669, 671, 675, 677, 678, 681, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 696, 697, 698, 699, 701, 702, 703, 705, 712, 714, 715, 719, 721, 726, 727, 733, 734, 735, 736, 739, 740, 741, 743, 746, 747, 748, 749, 750, 752, 753, 754, 756, 758, 759, 760, 762, 763, 765, 767, 768, 769, 772, 773, 775, 776, 777, 778, 779, 780, 783, 787, 788, 790, 793, 796, 797, 799, 800, 802, 803, 804, 806, 807, 808, 810, 812, 813, 814, 818, 819, 823, 824, 825, 827, 829, 830, 832, 835, 838, 839, 841, 844, 848, 849, 850, 851, 853, 857, 858, 859, 860, 861, 866, 867, 869, 870, 873, 874, 876, 877, 878, 879, 886, 888, 889, 891, 892, 893, 895, 896, 897, 898, 901, 902, 905, 907, 909, 911, 912, 915, 917, 918, 922, 923, 924, 926, 927, 928, 929, 930, 931, 932, 934, 935, 943, 944, 949, 950, 951, 953, 954, 956, 958, 961, 962, 963, 966, 967, 969, 970, 972, 973, 974, 975, 977, 981, 983, 985, 986, 991, 993, 994, 996, 1000, 1001, 1004, 1005, 1006, 1010, 1013, 1015, 1017, 1019, 1022, 1023, 1025, 1027, 1030, 1031, 1034, 1037, 1038, 1039, 1042, 1043, 1044, 1046, 1047, 1049, 1050, 1051, 1056, 1057, 1058, 1061, 1062, 1063, 1064, 1065, 1067, 1068, 1071, 1072, 1076, 1077, 1078, 1080, 1082, 1084, 1086, 1087, 1092, 1094, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1112, 1115, 1119, 1123, 1124, 1128, 1131, 1133, 1134, 1135, 1136, 1137 ] }
bike_share_1
What is the percentage ration of customers to subscribers that started their trips within the city of San Francisco?
customer refers to subscription_type = 'customer'; subscriber refers to subscription_type = 'subscriber'; started their trips within refers to start_station_id; percentage ratio = DIVIDE(SUM(subscription_type = 'Customer'), SUM(subscription_type = 'Subscriber')) as percentage;
SELECT CAST(SUM(CASE WHEN T1.subscription_type = 'Customer' THEN 1 ELSE 0 END) AS REAL) * 100 / SUM(CASE WHEN T1.subscription_type = 'Subscriber' THEN 1 ELSE 0 END) FROM trip AS T1 LEFT JOIN station AS T2 ON T2.name = T1.start_station_name WHERE T2.city = 'San Francisco'
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,093
9,093
CREATE TABLE `station` ( name TEXT, city TEXT ) CREATE TABLE `trip` ( start_station_name TEXT, subscription_type TEXT )
[ "CASE WHEN", "AS", "SELECT", "SUM", "CASE", "ON", "CAST", "LEFT JOIN", "FROM" ]
14
medium
{ "case_1": [ -1 ], "case_2": [ 178 ], "case_3": [ 178 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 6, 16, 24, 35, 39, 42, 54, 61, 64, 71, 77, 81, 83, 87, 93, 94, 104, 106, 112, 113, 119, 120, 122, 127, 129, 141, 148, 152, 153, 155, 158, 169, 171, 173, 178, 184, 186, 189, 191, 192, 195, 201, 205, 207, 212, 213, 215, 219, 223, 225, 226, 228, 234, 236, 245, 248, 254, 258, 261, 264, 267, 271, 278, 279, 298, 299, 300, 304, 313, 316, 317, 322, 323, 335, 347, 356, 360, 363, 365, 375, 378, 379, 381, 383, 393, 398, 402, 406, 409, 412, 415, 423, 427, 438, 448, 450, 451, 452, 453, 458, 470, 476, 478, 479, 483, 485, 486, 487, 488, 500, 504, 508, 510, 514, 517, 518, 527, 528, 535, 537, 540, 547, 550, 560, 563, 564, 571, 573, 575, 579, 580, 581, 597, 609, 612, 620, 623, 628, 630, 638, 640, 646, 650, 658, 662, 666, 672, 676, 682, 686, 690, 695, 701, 706, 709, 710, 717, 723, 740, 744, 745, 747, 750, 753, 762, 772, 776, 777, 787, 788, 795, 796, 798, 800, 802, 805, 808, 810, 813, 823, 825, 827, 832, 841, 844, 848, 868, 870, 871, 872, 874, 880, 894, 896, 898, 909, 912, 913, 922, 924, 926, 939, 941, 943, 944, 958, 959, 962, 973, 979, 985, 998, 1008, 1012, 1023, 1027, 1031, 1036, 1038, 1048, 1062, 1064, 1066, 1068, 1069, 1072, 1078, 1082, 1087, 1092, 1093, 1098, 1100, 1110, 1121, 1128, 1129, 1131, 1133, 1134, 1135 ] }
bike_share_1
What is the average duration of trips for the starting station of Santa Clara at Almaden and what is the latitude and longitude of this station?
average duration = DIVIDE(SUM(duration), COUNT(id)); starting station refers to start_station_name; start_station_name = 'Santa Clara at Almaden'; latitude refers to lat; longitude refers to long;
SELECT AVG(T1.duration), T2.lat, T2.long FROM trip AS T1 LEFT JOIN station AS T2 ON T2.name = T1.start_station_name LEFT JOIN station AS T3 ON T3.name = T1.end_station_name WHERE T1.start_station_name = 'Santa Clara at Almaden'
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,094
9,094
CREATE TABLE `station` ( name TEXT, lat REAL, long REAL, installation_date TEXT ) CREATE TABLE `trip` ( duration INTEGER, start_station_name TEXT, end_station_name TEXT )
[ "AS", "SELECT", "ON", "AVG", "LEFT JOIN", "FROM" ]
10
simple
{ "case_1": [ 178 ], "case_2": [ 178 ], "case_3": [ 178 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 88, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 368, 369, 370, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 448, 449, 450, 451, 452, 454, 455, 456, 457, 459, 460, 462, 463, 464, 465, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 505, 507, 509, 511, 514, 515, 516, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 544, 547, 548, 550, 552, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 786, 787, 788, 790, 792, 793, 796, 797, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 999, 1000, 1001, 1003, 1005, 1006, 1010, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1071, 1072, 1074, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
bike_share_1
What is the shortest trip made starting from Franklin at Maple and what is the maximum wind speed at that date?
shortest trip refers to MIN(duration); starting from refers to start_station_name; start_station_name = 'Franklin at Maple'; maximum wind speed refers to max_wind_Speed_mph;
SELECT MIN(T1.duration), MAX(T2.max_wind_Speed_mph) FROM trip AS T1 INNER JOIN weather AS T2 ON T2.zip_code = T1.zip_code WHERE T1.start_station_name = 'Franklin at Maple' AND T2.date = '9/4/2013'
CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,095
9,095
CREATE TABLE `trip` ( duration INTEGER, start_station_name TEXT, zip_code INTEGER ) CREATE TABLE `weather` ( CREATE TABLE "weather" date TEXT, max_wind_Speed_mph INTEGER, zip_code TEXT )
[ "AS", "AND", "SELECT", "/", "INNER JOIN", "ON", "MIN", "FROM", "MAX" ]
11
medium
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ -1 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 88, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 368, 369, 370, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 448, 449, 450, 451, 452, 454, 455, 456, 457, 459, 460, 462, 463, 464, 465, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 505, 507, 509, 511, 514, 515, 516, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 544, 547, 548, 550, 552, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 796, 797, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 999, 1000, 1001, 1003, 1005, 1006, 1010, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1071, 1072, 1074, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
bike_share_1
How many bikes have been borrowed at San Jose Diridon Caltrain Station on the date and time of 10/20/2013 8:11:01 AM and indicate the station's coordinates.
number of bikes that have been borrowed refers to SUM(bikes_available); San Jose Diridon Caltrain Station refers to name = 'San Jose Diridon Caltrain Station'; station's coordinates refers to (lat, long);
SELECT SUM(T2.bikes_available), T1.long, T1.lat FROM station AS T1 INNER JOIN status AS T2 ON T2.station_id = T1.id WHERE T2.time = '2013/10/20 8:11:01' AND T1.name = 'San Jose Diridon Caltrain Station'
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,096
9,096
CREATE TABLE `station` ( CREATE TABLE "station" id INTEGER not null primary key, name TEXT, lat REAL, long REAL, installation_date TEXT ) CREATE TABLE `status` ( CREATE TABLE "status" station_id INTEGER, bikes_available INTEGER, time TEXT )
[ "AS", "AND", "SELECT", "SUM", "/", "INNER JOIN", "ON", "FROM" ]
10
simple
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ -1 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 88, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 368, 369, 370, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 448, 449, 450, 451, 452, 454, 455, 456, 457, 459, 460, 462, 463, 464, 465, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 505, 507, 509, 510, 511, 514, 515, 516, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 544, 547, 548, 550, 552, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 998, 999, 1000, 1001, 1003, 1005, 1006, 1008, 1010, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1071, 1072, 1074, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
bike_share_1
Name the city of the station that trip ID 585842 borrowed a bike and indicate when that station was first installed.
when the station was first installed refers to installation_date;
SELECT T2.city, T2.installation_date FROM trip AS T1 INNER JOIN station AS T2 ON T2.name = T1.start_station_name WHERE T1.id = 585842
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,097
9,097
CREATE TABLE `station` ( CREATE TABLE "station" id INTEGER not null primary key, name TEXT, lat REAL, city TEXT, installation_date TEXT ) CREATE TABLE `trip` ( CREATE TABLE "trip" id INTEGER not null primary key, start_station_name TEXT, start_station_id INTEGER, end_station_id INTEGER, bike_id INTEGER )
[ "AS", "SELECT", "INNER JOIN", "ON", "FROM" ]
6
simple
{ "case_1": [ 178 ], "case_2": [ 178 ], "case_3": [ 178 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 35, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 61, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 101, 102, 104, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 215, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 271, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 286, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 367, 368, 369, 370, 373, 374, 375, 376, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 462, 463, 464, 465, 466, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 504, 505, 506, 507, 508, 509, 510, 511, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 526, 527, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 542, 544, 547, 548, 550, 552, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 601, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 657, 658, 659, 660, 661, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 786, 787, 788, 790, 792, 793, 795, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 978, 980, 981, 982, 985, 986, 988, 991, 993, 994, 996, 997, 998, 999, 1000, 1001, 1003, 1004, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1074, 1075, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1113, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
bike_share_1
How many stations were installed on the date of 8/16/2013 and how many users on those stations are classified as a customer?
installed on refers to installation_date; installation_date = '8/16/2013'; customers refers to subscription_type = customers;
SELECT COUNT(T1.name) , SUM(CASE WHEN T2.subscription_type = 'Customer' THEN 1 ELSE 0 END) FROM station AS T1 INNER JOIN trip AS T2 ON T2.start_station_name = T1.name WHERE T1.installation_date = '8/16/2013' AND T2.subscription_type = 'Customer'
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,098
9,098
CREATE TABLE `station` ( name TEXT, lat REAL, installation_date TEXT ) CREATE TABLE `trip` ( start_station_name TEXT, subscription_type TEXT )
[ "CASE WHEN", "AS", "AND", "SELECT", "SUM", "/", "CASE", "INNER JOIN", "ON", "COUNT", "FROM" ]
13
medium
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ -1 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 4, 5, 6, 8, 11, 12, 16, 19, 20, 21, 22, 24, 26, 27, 30, 33, 36, 37, 39, 42, 44, 45, 47, 51, 52, 53, 55, 57, 61, 62, 63, 64, 66, 68, 69, 71, 73, 74, 75, 76, 77, 81, 82, 83, 85, 86, 88, 90, 91, 93, 94, 95, 96, 97, 98, 99, 104, 106, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 131, 138, 140, 141, 142, 143, 144, 146, 148, 152, 153, 154, 155, 158, 159, 160, 163, 164, 167, 169, 170, 171, 172, 173, 175, 176, 177, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 192, 195, 196, 197, 199, 200, 201, 202, 206, 207, 212, 213, 214, 215, 219, 223, 225, 226, 227, 228, 229, 233, 234, 236, 239, 240, 243, 244, 247, 248, 254, 256, 258, 261, 262, 264, 265, 266, 267, 268, 269, 271, 272, 275, 276, 277, 278, 279, 282, 296, 298, 299, 300, 301, 304, 311, 313, 314, 315, 316, 317, 319, 320, 322, 323, 325, 330, 334, 335, 336, 338, 339, 341, 344, 345, 347, 349, 354, 356, 358, 360, 361, 363, 364, 365, 368, 370, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 423, 424, 425, 426, 427, 428, 433, 436, 437, 438, 440, 444, 445, 446, 448, 450, 451, 452, 453, 454, 455, 458, 460, 462, 463, 464, 465, 467, 469, 470, 471, 473, 475, 476, 477, 478, 479, 480, 482, 483, 484, 485, 486, 487, 488, 490, 493, 494, 496, 497, 498, 500, 504, 505, 507, 509, 510, 514, 515, 516, 517, 518, 519, 520, 522, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 544, 547, 548, 550, 552, 557, 558, 559, 560, 561, 562, 563, 564, 566, 571, 573, 575, 579, 580, 581, 582, 584, 586, 588, 589, 595, 596, 597, 605, 606, 608, 609, 610, 611, 612, 613, 615, 620, 623, 624, 625, 626, 627, 628, 630, 632, 633, 634, 636, 637, 638, 640, 641, 643, 645, 646, 648, 649, 650, 651, 654, 658, 659, 662, 663, 665, 666, 668, 669, 671, 672, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 693, 694, 695, 696, 697, 699, 701, 702, 705, 706, 710, 712, 714, 715, 717, 721, 723, 726, 727, 733, 734, 735, 736, 739, 740, 741, 743, 744, 745, 746, 747, 749, 750, 752, 753, 754, 756, 758, 760, 762, 763, 765, 767, 768, 769, 772, 773, 775, 776, 777, 778, 779, 780, 783, 787, 788, 790, 793, 795, 796, 797, 798, 799, 800, 802, 804, 805, 806, 807, 808, 810, 812, 813, 814, 818, 819, 823, 824, 825, 827, 829, 830, 832, 835, 838, 839, 841, 844, 848, 849, 851, 853, 857, 858, 859, 860, 861, 866, 867, 868, 870, 871, 873, 874, 876, 877, 878, 879, 880, 886, 888, 892, 893, 894, 895, 896, 897, 898, 901, 902, 905, 907, 909, 911, 912, 915, 917, 918, 922, 923, 924, 926, 927, 928, 930, 931, 932, 934, 935, 941, 943, 944, 949, 950, 951, 953, 954, 956, 958, 959, 961, 962, 963, 969, 973, 974, 975, 977, 981, 985, 986, 991, 993, 996, 998, 1000, 1001, 1005, 1006, 1008, 1010, 1012, 1013, 1015, 1017, 1019, 1022, 1023, 1027, 1031, 1037, 1038, 1039, 1042, 1043, 1044, 1046, 1047, 1050, 1051, 1058, 1061, 1062, 1063, 1064, 1066, 1067, 1068, 1069, 1071, 1072, 1078, 1080, 1082, 1084, 1086, 1087, 1092, 1094, 1098, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1112, 1115, 1119, 1121, 1123, 1124, 1128, 1131, 1133, 1134, 1135, 1136, 1137 ] }
bike_share_1
Which station did the user who started at Market at 4th station ended their trip at the time of 12:45:00 PM and the date of 8/29/2013 and what is the location coordinates of the ending station?
started at refers to start_station_name; start_station_name = 'Market at 4th'; location coordinates refers to (lat, long);
SELECT T1.name, T1.lat, T1.long FROM station AS T1 INNER JOIN trip AS T2 ON T2.end_station_name = T1.name WHERE T2.start_station_name = 'Market at 4th' AND T2.end_date = '8/29/2013 12:45'
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,099
9,099
CREATE TABLE `station` ( name TEXT, lat REAL, long REAL, installation_date TEXT ) CREATE TABLE `trip` ( start_station_name TEXT, end_date TEXT, end_station_name TEXT )
[ "AS", "AND", "SELECT", "/", "INNER JOIN", "ON", "FROM" ]
9
simple
{ "case_1": [ 178 ], "case_2": [ 178 ], "case_3": [ 178, 1009 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 88, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 367, 368, 369, 370, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 447, 448, 449, 450, 451, 452, 454, 455, 456, 457, 459, 460, 462, 463, 464, 465, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 505, 507, 509, 510, 511, 514, 515, 516, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 544, 547, 548, 550, 551, 552, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 601, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 998, 999, 1000, 1001, 1003, 1005, 1006, 1008, 1009, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1071, 1072, 1074, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
bike_share_1
How many subscribers have ended their trip at MLK Library and how many docks does that station have?
subscribers refers to subscription_type = 'subscribers'; ended their trip at refers to end_station_name; end_station_name = 'MLK Library'; number of docks a station have refers to dock_count;
SELECT COUNT(T1.id), T2.dock_count FROM trip AS T1 INNER JOIN station AS T2 ON T2.name = T1.start_station_name WHERE T1.end_station_name = 'MLK Library' AND T1.subscription_type = 'Subscriber' AND T2.dock_count = 19
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,100
9,100
CREATE TABLE `station` ( CREATE TABLE "station" id INTEGER not null primary key, name TEXT, dock_count INTEGER ) CREATE TABLE `trip` ( CREATE TABLE "trip" id INTEGER not null primary key, start_station_name TEXT, start_station_id INTEGER, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT )
[ "AS", "AND", "SELECT", "INNER JOIN", "ON", "COUNT", "FROM" ]
9
simple
{ "case_1": [ 178 ], "case_2": [ 178 ], "case_3": [ 178 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 109, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 230, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 271, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 286, 287, 289, 290, 292, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 367, 368, 369, 370, 373, 374, 375, 376, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 399, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 462, 463, 464, 465, 466, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 504, 505, 507, 509, 510, 511, 512, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 542, 544, 547, 548, 550, 552, 554, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 600, 601, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 618, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 665, 666, 667, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 680, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 692, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 707, 710, 711, 712, 714, 715, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 730, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 795, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 817, 818, 819, 820, 822, 823, 824, 825, 827, 828, 829, 830, 831, 832, 833, 834, 835, 837, 838, 839, 841, 843, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 903, 904, 905, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 945, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 965, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 998, 999, 1000, 1001, 1003, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1019, 1020, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1074, 1078, 1079, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1113, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1126, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
bike_share_1
What is the average coldest temperature for the zip code of 94301 and what stations are within the zip code? Include the latitude and longitude as well.
coldest temperature refers to min_temperature_f; average coldest temperature refers = AVG(min_temperature_f); stations refers to name; latitude refers to lat; longitude refers to long;
SELECT AVG(T3.min_temperature_f), T1.long, T1.lat FROM station AS T1 INNER JOIN trip AS T2 ON T2.start_station_name = T1.name INNER JOIN weather AS T3 ON T3.zip_code = T2.zip_code WHERE T3.zip_code = 94301
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,101
9,101
CREATE TABLE `station` ( name TEXT, lat REAL, long REAL, installation_date TEXT ) CREATE TABLE `trip` ( start_station_name TEXT, zip_code INTEGER ) CREATE TABLE `weather` ( min_temperature_f INTEGER, zip_code TEXT )
[ "AS", "SELECT", "INNER JOIN", "ON", "AVG", "FROM" ]
10
simple
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ 178 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 88, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 368, 369, 370, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 447, 448, 449, 450, 451, 452, 454, 455, 456, 457, 459, 460, 462, 463, 464, 465, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 505, 507, 509, 511, 514, 515, 516, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 544, 547, 548, 550, 552, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 786, 787, 788, 790, 792, 793, 796, 797, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 999, 1000, 1001, 1003, 1005, 1006, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1071, 1072, 1074, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
bike_share_1
Calculate the average duration travelled by subscribers that both started and ended their trip in Mountain View City Hall and indicate the date when the station was first installed.
average duration = DIVIDE(SUM(duration), COUNT(id)); subscribers refers to subscription_type = 'subscriptions'; started and ended their trip at Mountain View City Hall refers to start_station_name = 'Mountain View City Hall' and end_station_name = 'Mountain View City Hall'; when the station was first installed refers to installation_date;
SELECT AVG(T1.duration), T2.installation_date FROM trip AS T1 INNER JOIN station AS T2 ON T2.name = T1.start_station_name WHERE T1.start_station_name = 'Mountain View City Hall' AND T1.subscription_type = 'Subscriber' AND T1.end_station_name = 'Mountain View City Hall'
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER )
CREATE TABLE "station" ( id INTEGER not null primary key, name TEXT, lat REAL, long REAL, dock_count INTEGER, city TEXT, installation_date TEXT ) CREATE TABLE "status" ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE "trip" ( id INTEGER not null primary key, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE "weather" ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches REAL, mean_sea_level_pressure_inches REAL, min_sea_level_pressure_inches REAL, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches TEXT, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code TEXT )
na
9,102
9,102
CREATE TABLE `station` ( name TEXT, lat REAL, installation_date TEXT ) CREATE TABLE `trip` ( duration INTEGER, start_station_name TEXT, end_station_name TEXT, subscription_type TEXT )
[ "AS", "AND", "SELECT", "INNER JOIN", "ON", "AVG", "FROM" ]
9
simple
{ "case_1": [ 178 ], "case_2": [ 178 ], "case_3": [ 178 ], "case_4": [ 178, 947, 1009 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 79, 80, 81, 82, 83, 84, 85, 86, 88, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 367, 368, 369, 370, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 447, 448, 449, 450, 451, 452, 454, 455, 456, 457, 459, 460, 462, 463, 464, 465, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 505, 507, 509, 510, 511, 514, 515, 516, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 544, 547, 548, 550, 552, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 601, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 786, 787, 788, 790, 792, 793, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 864, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 998, 999, 1000, 1001, 1003, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1071, 1072, 1074, 1078, 1080, 1081, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
movie_3
What is the description of the film ACADEMY DINOSAUR?
"ACADEMY DINOSAUR" is the title of film
SELECT description FROM film WHERE title = 'ACADEMY DINOSAUR'
CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,103
9,103
CREATE TABLE `film` ( title TEXT not null, description TEXT )
[ "SELECT", "FROM" ]
2
simple
{ "case_1": [ 396, 855, 884 ], "case_2": [ 396, 855, 884 ], "case_3": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141 ] }
movie_3
How many films have a rental duration of over 6 days?
rental duration of over 6 days refers to rental_duration > 6
SELECT COUNT(film_id) FROM film WHERE rental_duration > 6
CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,104
9,104
CREATE TABLE `film` ( CREATE TABLE "film" film_id INTEGER primary key autoincrement, rental_duration INTEGER default 3 not null )
[ "COUNT", "SELECT", "FROM" ]
3
simple
{ "case_1": [ 396, 855, 884 ], "case_2": [ 396, 855, 884 ], "case_3": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141 ] }
movie_3
Please list the titles of the films that are released in 2006 and have a rental rate of $2.99.
released in 2006 refers to release_year = 2006; rental rate of $2.99 refers to rental_rate = 2.99
SELECT title FROM film WHERE release_year = 2006 AND rental_rate = 2.99
CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,105
9,105
CREATE TABLE `film` ( title TEXT not null, release_year TEXT, rental_rate REAL default 4.99 not null )
[ "AND", "SELECT", "FROM" ]
3
simple
{ "case_1": [ 396, 855, 884 ], "case_2": [ 396, 855, 884 ], "case_3": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141 ] }
movie_3
Which film has the longest duration of film screening? Please give its title.
longest duration of film refers to Max(length)
SELECT title FROM film ORDER BY length DESC LIMIT 1
CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,106
9,106
CREATE TABLE `film` ( title TEXT not null )
[ "SELECT", "ORDER BY", "LIMIT", "length", "FROM", "DESC" ]
6
simple
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ 404, 584, 626 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 1, 10, 11, 13, 15, 17, 20, 28, 29, 36, 38, 43, 49, 55, 59, 62, 69, 73, 75, 78, 86, 89, 108, 121, 125, 133, 138, 150, 159, 162, 163, 167, 173, 174, 179, 181, 185, 187, 188, 199, 202, 206, 208, 213, 229, 233, 247, 252, 262, 263, 275, 278, 281, 285, 286, 291, 309, 311, 313, 314, 319, 320, 324, 329, 334, 336, 337, 341, 342, 345, 348, 349, 352, 353, 356, 359, 364, 365, 371, 373, 378, 379, 381, 385, 394, 395, 400, 403, 404, 409, 411, 428, 429, 434, 435, 444, 445, 451, 454, 460, 462, 469, 482, 495, 497, 505, 530, 532, 534, 536, 538, 542, 548, 552, 555, 560, 566, 567, 576, 578, 579, 583, 584, 586, 590, 592, 595, 611, 619, 621, 625, 626, 634, 637, 638, 645, 654, 657, 659, 664, 665, 669, 681, 688, 690, 691, 698, 701, 703, 708, 713, 719, 732, 733, 735, 748, 752, 759, 760, 768, 778, 790, 803, 810, 815, 818, 823, 827, 830, 836, 850, 851, 861, 866, 869, 876, 886, 889, 891, 893, 901, 911, 918, 927, 929, 934, 946, 950, 951, 954, 956, 962, 963, 966, 967, 970, 972, 973, 975, 977, 981, 983, 987, 989, 994, 1004, 1005, 1006, 1010, 1013, 1017, 1024, 1025, 1030, 1034, 1037, 1038, 1047, 1049, 1050, 1051, 1056, 1057, 1065, 1067, 1068, 1076, 1077, 1083, 1094, 1124, 1137, 1139, 1141 ] }
movie_3
Which film has a higher replacement cost, ACE GOLDFINGER or ACADEMY DINOSAUR?
higher replacement cost refers to Max(replacement_cost); 'ACE GOLDFIINGER' and 'ACADEMY DINOSAUR' are both the title of film
SELECT title FROM film WHERE title IN ('ACE GOLDFINGER', 'ACADEMY DINOSAUR') ORDER BY replacement_cost DESC LIMIT 1
CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,107
9,107
CREATE TABLE `film` ( title TEXT not null, replacement_cost REAL default 19.99 not null )
[ "SELECT", "ORDER BY", "LIMIT", "IN", "DESC", "FROM" ]
6
simple
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ 404, 584, 626 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 1, 10, 11, 13, 15, 17, 20, 28, 29, 36, 38, 43, 49, 55, 59, 62, 69, 73, 75, 78, 86, 89, 108, 121, 125, 133, 138, 150, 159, 162, 163, 167, 173, 174, 179, 181, 185, 187, 188, 199, 200, 202, 206, 208, 213, 229, 233, 247, 252, 262, 263, 275, 278, 281, 285, 286, 291, 309, 311, 313, 314, 319, 320, 324, 329, 334, 336, 337, 341, 342, 345, 348, 349, 352, 353, 356, 359, 364, 365, 371, 373, 378, 379, 381, 385, 394, 395, 400, 403, 404, 409, 411, 428, 429, 434, 435, 444, 445, 451, 454, 460, 462, 469, 482, 495, 497, 505, 530, 532, 534, 536, 538, 542, 548, 552, 555, 560, 566, 567, 576, 578, 579, 583, 584, 586, 590, 592, 595, 611, 619, 621, 625, 626, 634, 637, 638, 645, 654, 657, 659, 664, 665, 669, 681, 688, 690, 691, 698, 701, 703, 708, 713, 719, 732, 733, 735, 748, 752, 759, 760, 768, 778, 790, 803, 810, 815, 818, 823, 827, 830, 836, 850, 851, 861, 866, 869, 876, 886, 889, 891, 893, 901, 911, 918, 927, 929, 934, 946, 950, 951, 954, 956, 962, 963, 966, 967, 970, 972, 973, 975, 977, 981, 983, 987, 989, 994, 1004, 1005, 1006, 1010, 1013, 1017, 1024, 1025, 1030, 1034, 1037, 1038, 1047, 1049, 1050, 1051, 1056, 1057, 1065, 1067, 1068, 1076, 1077, 1083, 1094, 1124, 1137, 1139, 1141 ] }
movie_3
Among the films that are released in 2006, how many of them are rated Adults Only in the Motion Picture Association Film Rating?
released in 2006 refers to release_year = 2006; rated Adults Only refers to rating = 'NC-17'
SELECT COUNT(film_id) FROM film WHERE rating = 'NC-17' AND release_year = 2006
CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,108
9,108
CREATE TABLE `film` ( CREATE TABLE "film" film_id INTEGER primary key autoincrement, release_year TEXT, rating TEXT default 'G' )
[ "AND", "SELECT", "-", "COUNT", "FROM" ]
5
simple
{ "case_1": [ 396, 855 ], "case_2": [ 396, 855 ], "case_3": [ 147, 176, 254, 265, 273, 317, 325, 350, 396, 537, 584, 596, 626, 658, 673, 726, 770, 811, 814, 855, 1039 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 15, 16, 19, 20, 21, 22, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 45, 47, 50, 51, 52, 53, 55, 56, 57, 61, 62, 63, 66, 67, 68, 69, 71, 73, 74, 75, 76, 77, 78, 79, 82, 85, 86, 87, 88, 89, 90, 91, 93, 95, 96, 97, 98, 99, 100, 105, 106, 108, 109, 111, 112, 113, 115, 116, 117, 118, 119, 121, 124, 125, 126, 127, 128, 129, 131, 135, 138, 140, 141, 142, 143, 144, 146, 147, 148, 152, 154, 157, 158, 159, 160, 163, 164, 167, 168, 169, 170, 172, 173, 175, 176, 177, 179, 180, 182, 183, 184, 185, 187, 188, 189, 190, 191, 192, 196, 197, 198, 199, 200, 202, 203, 206, 210, 212, 214, 216, 219, 223, 224, 225, 226, 227, 228, 229, 230, 233, 234, 239, 240, 243, 244, 247, 252, 253, 254, 255, 256, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 273, 275, 276, 277, 278, 282, 286, 291, 293, 294, 296, 299, 300, 301, 303, 305, 311, 314, 315, 316, 317, 319, 320, 323, 325, 330, 334, 335, 336, 338, 339, 341, 344, 345, 348, 349, 350, 352, 354, 356, 358, 359, 360, 361, 362, 364, 367, 368, 370, 371, 373, 374, 375, 376, 380, 382, 383, 384, 385, 391, 392, 393, 394, 395, 396, 398, 399, 401, 402, 403, 405, 406, 408, 409, 410, 411, 412, 413, 414, 416, 417, 418, 419, 420, 421, 423, 424, 425, 426, 427, 428, 433, 436, 437, 438, 439, 440, 443, 444, 445, 446, 447, 448, 451, 452, 453, 454, 455, 458, 460, 462, 463, 464, 465, 466, 467, 469, 470, 471, 473, 475, 476, 477, 478, 480, 481, 482, 484, 485, 487, 488, 489, 490, 492, 493, 494, 496, 497, 498, 500, 503, 504, 505, 507, 509, 510, 512, 514, 515, 516, 517, 519, 520, 522, 524, 526, 528, 529, 530, 531, 532, 533, 535, 536, 537, 538, 539, 541, 542, 543, 544, 545, 547, 548, 550, 551, 552, 554, 557, 558, 559, 560, 561, 562, 563, 564, 566, 573, 580, 581, 582, 584, 585, 586, 588, 589, 591, 594, 595, 596, 597, 598, 599, 601, 603, 605, 606, 608, 610, 611, 612, 613, 615, 617, 618, 620, 622, 624, 625, 626, 627, 629, 630, 632, 633, 634, 637, 641, 643, 645, 646, 647, 648, 649, 651, 654, 656, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 671, 673, 675, 677, 678, 679, 680, 681, 683, 684, 685, 686, 687, 688, 689, 690, 692, 693, 694, 695, 696, 697, 698, 699, 702, 703, 705, 707, 709, 712, 714, 715, 716, 718, 719, 721, 726, 727, 729, 730, 733, 734, 735, 736, 737, 739, 740, 741, 743, 746, 747, 748, 749, 750, 752, 753, 754, 756, 757, 758, 760, 762, 763, 765, 767, 768, 769, 770, 772, 773, 775, 776, 777, 778, 779, 780, 783, 785, 787, 788, 790, 793, 794, 795, 796, 797, 798, 799, 800, 802, 804, 805, 806, 807, 808, 810, 811, 812, 813, 814, 817, 818, 819, 820, 821, 824, 825, 826, 827, 829, 830, 831, 832, 835, 838, 839, 840, 841, 843, 844, 848, 849, 851, 853, 855, 857, 858, 859, 860, 861, 864, 865, 866, 867, 869, 870, 873, 874, 876, 877, 878, 879, 882, 886, 888, 890, 892, 893, 894, 895, 896, 897, 898, 899, 901, 902, 903, 905, 907, 909, 911, 912, 913, 915, 917, 918, 920, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 941, 942, 943, 944, 945, 949, 950, 951, 953, 954, 955, 956, 958, 959, 960, 961, 963, 965, 968, 969, 972, 974, 975, 976, 977, 979, 980, 981, 983, 985, 986, 991, 993, 996, 998, 1000, 1001, 1005, 1006, 1008, 1009, 1010, 1011, 1013, 1014, 1015, 1017, 1018, 1019, 1020, 1022, 1023, 1027, 1030, 1031, 1037, 1039, 1042, 1043, 1044, 1046, 1047, 1050, 1051, 1052, 1053, 1055, 1057, 1058, 1059, 1061, 1062, 1063, 1064, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1084, 1086, 1087, 1090, 1092, 1093, 1094, 1096, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1113, 1115, 1117, 1119, 1121, 1123, 1124, 1126, 1127, 1128, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
movie_3
How many films with the rental rate of $2.99 have the special feature of "Deleted Scenes"?
rental rate of $2.99 refers to rental_rate = 2.99; film refers to title
SELECT COUNT(film_id) FROM film WHERE rental_rate = 2.99 AND special_features = 'Deleted Scenes'
CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,109
9,109
CREATE TABLE `film` ( CREATE TABLE "film" film_id INTEGER primary key autoincrement, rental_rate REAL default 4.99 not null, special_features TEXT )
[ "COUNT", "AND", "SELECT", "FROM" ]
4
simple
{ "case_1": [ 855 ], "case_2": [ 855 ], "case_3": [ 147, 176, 254, 265, 273, 317, 325, 350, 537, 584, 596, 626, 658, 673, 726, 770, 811, 814, 855, 1039 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 4, 5, 6, 8, 9, 10, 11, 12, 13, 15, 16, 19, 20, 21, 22, 24, 25, 26, 27, 28, 30, 32, 33, 35, 36, 37, 38, 39, 40, 43, 44, 45, 47, 50, 51, 52, 53, 55, 56, 57, 61, 62, 63, 66, 67, 68, 69, 71, 73, 74, 75, 76, 77, 78, 79, 82, 85, 86, 87, 88, 89, 90, 91, 93, 95, 96, 98, 99, 100, 106, 108, 109, 111, 112, 113, 115, 116, 117, 118, 119, 121, 124, 125, 126, 127, 128, 129, 131, 138, 140, 141, 142, 143, 144, 146, 147, 148, 152, 154, 157, 158, 159, 160, 163, 164, 167, 168, 169, 170, 172, 173, 175, 176, 177, 179, 180, 182, 183, 184, 185, 187, 188, 189, 190, 191, 192, 196, 197, 198, 199, 200, 202, 203, 206, 210, 212, 214, 216, 219, 223, 224, 225, 226, 227, 229, 230, 233, 234, 239, 240, 243, 244, 247, 252, 254, 255, 256, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 273, 275, 276, 277, 278, 282, 286, 291, 293, 294, 296, 299, 301, 303, 305, 311, 314, 315, 316, 317, 319, 320, 323, 325, 330, 334, 335, 336, 338, 339, 341, 344, 345, 348, 349, 350, 352, 354, 356, 358, 359, 360, 361, 362, 364, 367, 368, 370, 371, 373, 374, 375, 376, 380, 382, 383, 384, 385, 391, 392, 393, 394, 395, 398, 399, 401, 402, 403, 405, 406, 408, 409, 410, 411, 412, 413, 414, 416, 417, 418, 419, 420, 421, 423, 424, 425, 426, 427, 428, 433, 436, 437, 438, 439, 440, 443, 444, 445, 446, 447, 448, 451, 452, 453, 454, 455, 458, 460, 462, 463, 464, 465, 466, 467, 469, 470, 471, 473, 475, 476, 477, 478, 480, 481, 482, 484, 485, 487, 488, 490, 492, 493, 494, 496, 497, 498, 500, 504, 505, 507, 509, 510, 512, 514, 515, 516, 517, 519, 520, 522, 524, 526, 528, 529, 530, 531, 532, 533, 535, 536, 537, 538, 539, 541, 542, 543, 544, 545, 547, 548, 551, 552, 554, 557, 558, 559, 560, 561, 562, 563, 564, 566, 573, 580, 581, 582, 584, 585, 586, 588, 589, 591, 594, 595, 596, 597, 598, 599, 601, 603, 605, 606, 608, 610, 611, 612, 613, 615, 618, 620, 622, 624, 625, 626, 627, 629, 630, 632, 633, 634, 637, 641, 643, 645, 646, 648, 649, 651, 654, 656, 658, 659, 661, 662, 663, 664, 665, 666, 667, 668, 669, 671, 673, 675, 677, 678, 679, 680, 681, 683, 684, 685, 686, 687, 688, 689, 690, 692, 693, 694, 696, 697, 698, 699, 702, 703, 705, 707, 712, 714, 715, 716, 718, 719, 721, 726, 727, 730, 733, 734, 735, 736, 737, 739, 740, 741, 743, 746, 747, 748, 749, 750, 752, 753, 754, 756, 757, 758, 760, 762, 763, 765, 767, 768, 769, 770, 772, 773, 775, 776, 777, 778, 779, 780, 783, 785, 787, 788, 790, 793, 794, 795, 796, 797, 798, 799, 800, 802, 804, 806, 807, 808, 810, 811, 812, 813, 814, 817, 818, 819, 820, 821, 824, 825, 827, 829, 830, 831, 832, 835, 838, 839, 840, 841, 843, 844, 848, 849, 851, 853, 855, 857, 858, 859, 860, 861, 864, 865, 866, 867, 869, 870, 873, 874, 876, 877, 878, 879, 886, 888, 890, 892, 893, 894, 895, 896, 897, 898, 899, 901, 902, 903, 905, 907, 909, 911, 912, 913, 915, 917, 918, 920, 922, 923, 924, 926, 927, 928, 930, 931, 932, 934, 935, 941, 942, 943, 944, 945, 949, 950, 951, 953, 954, 956, 958, 960, 961, 963, 965, 968, 969, 972, 974, 975, 976, 977, 981, 983, 985, 986, 991, 993, 996, 998, 1000, 1001, 1005, 1006, 1008, 1009, 1010, 1011, 1013, 1014, 1015, 1017, 1018, 1019, 1020, 1022, 1023, 1027, 1030, 1031, 1037, 1039, 1042, 1043, 1044, 1046, 1047, 1050, 1051, 1053, 1055, 1057, 1058, 1059, 1061, 1062, 1063, 1064, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1084, 1086, 1087, 1090, 1092, 1094, 1096, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1112, 1113, 1115, 1117, 1119, 1121, 1123, 1124, 1126, 1127, 1128, 1131, 1133, 1134, 1135, 1136, 1137 ] }
movie_3
Please list the titles of all the films that have more than 2 special features.
more than 2 special features refers to Count(special_features) > 2
SELECT title FROM ( SELECT title, COUNT(special_features) AS num FROM film GROUP BY title ) AS T ORDER BY T.num > 2
CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,110
9,110
CREATE TABLE `film` ( title TEXT not null, special_features TEXT )
[ "GROUP BY", "AS", "SELECT", "ORDER BY", "COUNT", "FROM" ]
9
simple
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ 254, 317, 325, 537, 584, 596, 626, 658, 814 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 4, 6, 10, 11, 13, 15, 16, 20, 22, 27, 28, 29, 30, 35, 36, 37, 47, 49, 51, 53, 55, 59, 61, 62, 63, 68, 69, 73, 74, 75, 77, 78, 82, 86, 87, 88, 89, 91, 93, 96, 98, 106, 108, 113, 115, 117, 118, 119, 121, 125, 126, 131, 138, 140, 142, 143, 146, 148, 150, 152, 159, 160, 162, 163, 164, 167, 169, 170, 173, 175, 179, 182, 183, 184, 185, 187, 188, 189, 190, 191, 192, 196, 197, 199, 202, 206, 212, 213, 214, 225, 226, 227, 229, 233, 234, 243, 244, 247, 252, 254, 256, 261, 262, 263, 267, 268, 269, 271, 275, 276, 277, 278, 281, 285, 286, 291, 299, 301, 303, 309, 311, 313, 314, 316, 317, 319, 320, 323, 324, 325, 329, 330, 334, 335, 336, 338, 339, 341, 342, 344, 345, 348, 349, 352, 353, 354, 356, 358, 359, 360, 364, 365, 370, 371, 373, 374, 375, 378, 379, 380, 381, 382, 383, 384, 385, 391, 392, 394, 395, 401, 403, 406, 409, 411, 412, 416, 417, 423, 424, 426, 428, 429, 434, 435, 436, 443, 444, 445, 447, 448, 451, 453, 454, 458, 460, 462, 464, 465, 466, 467, 469, 471, 473, 476, 477, 478, 481, 482, 484, 485, 487, 488, 490, 493, 495, 497, 500, 504, 505, 509, 510, 515, 516, 517, 519, 520, 526, 530, 532, 535, 536, 537, 538, 542, 544, 547, 548, 552, 555, 558, 559, 560, 563, 564, 566, 567, 573, 578, 579, 580, 581, 582, 584, 586, 590, 592, 595, 596, 597, 606, 608, 611, 613, 620, 621, 625, 626, 627, 630, 632, 633, 634, 637, 638, 641, 645, 646, 649, 651, 654, 657, 658, 659, 661, 662, 663, 664, 665, 668, 669, 671, 681, 687, 688, 690, 691, 694, 696, 698, 701, 703, 705, 712, 714, 718, 719, 720, 721, 727, 733, 734, 735, 736, 739, 740, 743, 748, 749, 750, 751, 752, 753, 756, 759, 760, 762, 768, 769, 772, 778, 779, 787, 790, 795, 796, 797, 798, 799, 800, 802, 803, 804, 810, 812, 813, 814, 817, 818, 819, 823, 824, 827, 830, 838, 839, 841, 849, 850, 851, 853, 857, 861, 866, 867, 869, 870, 874, 876, 877, 882, 886, 888, 889, 891, 893, 894, 896, 897, 898, 901, 902, 909, 911, 912, 913, 915, 917, 918, 922, 923, 924, 926, 927, 929, 930, 932, 934, 935, 941, 943, 950, 951, 954, 956, 958, 961, 962, 963, 966, 967, 969, 970, 972, 973, 975, 977, 981, 983, 985, 986, 987, 993, 994, 996, 1004, 1005, 1006, 1008, 1010, 1011, 1013, 1015, 1017, 1022, 1023, 1025, 1030, 1034, 1037, 1038, 1042, 1043, 1047, 1049, 1050, 1051, 1056, 1057, 1058, 1062, 1064, 1065, 1067, 1068, 1069, 1070, 1071, 1072, 1076, 1077, 1078, 1082, 1084, 1086, 1087, 1091, 1094, 1100, 1101, 1103, 1104, 1106, 1112, 1113, 1119, 1121, 1123, 1124, 1128, 1131, 1133, 1134, 1135, 1137 ] }
movie_3
What is the email address of the staff Jon Stephens?
SELECT email FROM staff WHERE first_name = 'Jon' AND last_name = 'Stephens'
CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,111
9,111
CREATE TABLE `staff` ( first_name TEXT not null, last_name TEXT not null, email TEXT )
[ "AND", "SELECT", "FROM" ]
3
simple
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141 ] }
movie_3
Please give the full names of all the active staff.
full name refers to first_name, last_name; active staff refers to active = 1
SELECT first_name, last_name FROM staff WHERE active = 1
CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,112
9,112
CREATE TABLE `staff` ( first_name TEXT not null, last_name TEXT not null, active INTEGER default 1 not null )
[ "SELECT", "FROM" ]
2
simple
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141 ] }
movie_3
In which year was the film with the highest replacement cost released?
highest replacement_cost refers to Max (replacement_cost); year refers to release_year
SELECT DISTINCT release_year FROM film WHERE replacement_cost = ( SELECT MAX(replacement_cost) FROM film )
CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,113
9,113
CREATE TABLE `film` ( release_year TEXT, replacement_cost REAL default 19.99 not null )
[ "SELECT", "FROM", "MAX" ]
5
simple
{ "case_1": [ 396, 855, 884 ], "case_2": [ 396, 855, 884 ], "case_3": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141 ] }
movie_3
Please list the titles of the top 3 films with the highest replacement cost.
highest replacement_cost refers to Max (replacement_cost); film refers to title
SELECT title FROM film WHERE replacement_cost = ( SELECT MAX(replacement_cost) FROM film ) LIMIT 3
CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,114
9,114
CREATE TABLE `film` ( title TEXT not null, replacement_cost REAL default 19.99 not null )
[ "LIMIT", "SELECT", "FROM", "MAX" ]
6
simple
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ 404, 584, 626 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 1, 10, 11, 13, 15, 17, 20, 28, 29, 31, 35, 36, 38, 49, 55, 59, 62, 69, 72, 73, 75, 78, 86, 89, 108, 109, 110, 119, 121, 123, 125, 133, 138, 150, 159, 162, 163, 167, 173, 174, 179, 181, 185, 187, 188, 199, 200, 202, 206, 208, 213, 229, 233, 239, 241, 247, 252, 262, 270, 275, 278, 281, 285, 286, 291, 309, 311, 313, 314, 319, 320, 324, 328, 329, 334, 336, 337, 341, 342, 345, 348, 349, 352, 353, 356, 359, 364, 365, 371, 373, 378, 379, 381, 385, 386, 394, 395, 400, 403, 404, 409, 410, 411, 428, 429, 434, 435, 444, 445, 451, 454, 460, 462, 466, 469, 482, 495, 497, 498, 505, 529, 530, 532, 534, 536, 538, 542, 548, 552, 555, 557, 560, 565, 566, 567, 576, 578, 579, 583, 584, 586, 590, 592, 595, 611, 619, 621, 625, 626, 633, 634, 637, 638, 642, 645, 654, 657, 659, 664, 665, 669, 681, 688, 690, 691, 698, 701, 703, 708, 713, 719, 732, 733, 735, 748, 752, 759, 760, 768, 778, 790, 803, 810, 815, 818, 820, 823, 827, 830, 836, 842, 845, 850, 851, 856, 861, 866, 869, 876, 886, 889, 891, 893, 901, 911, 918, 927, 929, 932, 934, 946, 950, 951, 953, 954, 956, 962, 963, 966, 967, 970, 972, 973, 975, 977, 981, 983, 984, 987, 989, 994, 1004, 1005, 1006, 1010, 1013, 1017, 1024, 1025, 1026, 1028, 1030, 1034, 1037, 1038, 1047, 1049, 1050, 1051, 1056, 1057, 1065, 1067, 1068, 1073, 1075, 1076, 1077, 1083, 1094, 1118, 1124, 1137, 1138, 1139, 1141 ] }
movie_3
What is the language of the film ACADEMY DINOSAUR?
"ACADEMY DINOSAUR" is the title of film; language refers to language.name
SELECT T2.name FROM film AS T1 INNER JOIN language AS T2 ON T1.language_id = T2.language_id WHERE T1.title = 'ACADEMY DINOSAUR'
CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,115
9,115
CREATE TABLE `film` ( title TEXT not null, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade ) CREATE TABLE `language` ( CREATE TABLE "language" language_id INTEGER primary key autoincrement, name TEXT not null )
[ "AS", "SELECT", "INNER JOIN", "ON", "FROM" ]
6
simple
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ 176, 218, 220, 254, 265, 317, 325, 369, 483, 537, 584, 596, 626, 658, 726, 814, 862, 900, 1039 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 35, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 61, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 101, 102, 104, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 215, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 271, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 286, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 367, 368, 369, 370, 373, 374, 375, 376, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 462, 463, 464, 465, 466, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 504, 505, 506, 507, 508, 509, 510, 511, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 526, 527, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 542, 544, 547, 548, 550, 552, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 601, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 657, 658, 659, 660, 661, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 786, 787, 788, 790, 792, 793, 795, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 978, 980, 981, 982, 985, 986, 988, 991, 993, 994, 996, 997, 998, 999, 1000, 1001, 1003, 1004, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1074, 1075, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1113, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
movie_3
How many films are in English?
"English" is the name of language
SELECT COUNT(T1.film_id) FROM film AS T1 INNER JOIN language AS T2 ON T1.language_id = T2.language_id WHERE T2.name = 'English'
CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,116
9,116
CREATE TABLE `film` ( CREATE TABLE "film" film_id INTEGER primary key autoincrement, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade ) CREATE TABLE `language` ( CREATE TABLE "language" language_id INTEGER primary key autoincrement, name TEXT not null )
[ "AS", "SELECT", "INNER JOIN", "ON", "COUNT", "FROM" ]
7
simple
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ 176, 218, 220, 254, 265, 317, 325, 369, 483, 537, 584, 596, 626, 658, 726, 814, 862, 900, 1039 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 35, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 61, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 271, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 286, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 368, 369, 370, 373, 374, 375, 376, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 462, 463, 464, 465, 466, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 504, 505, 507, 509, 510, 511, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 542, 544, 547, 548, 550, 552, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 661, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 795, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 999, 1000, 1001, 1003, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1074, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1113, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
movie_3
Please list the titles of all the films starring the actor PENELOPE GUINESS.
SELECT T2.title FROM film_actor AS T1 INNER JOIN film AS T2 ON T1.film_id = T2.film_id INNER JOIN actor AS T3 ON T1.actor_id = T3.actor_id WHERE T3.first_name = 'PENELOPE' AND T3.last_name = 'GUINESS'
CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,117
9,117
CREATE TABLE `actor` ( CREATE TABLE "actor" actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null ) CREATE TABLE `film` ( CREATE TABLE "film" film_id INTEGER primary key autoincrement, title TEXT not null ) CREATE TABLE `film_actor` ( CREATE TABLE "film_actor" actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, primary key actor_id, film_id )
[ "AS", "AND", "SELECT", "INNER JOIN", "ON", "FROM" ]
10
simple
{ "case_1": [ 265 ], "case_2": [ 265, 317, 626 ], "case_3": [ 176, 218, 220, 254, 265, 317, 325, 369, 483, 537, 584, 596, 626, 658, 726, 814, 862, 900, 1039 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 88, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 367, 368, 369, 370, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 447, 448, 449, 450, 451, 452, 454, 455, 456, 457, 459, 460, 462, 463, 464, 465, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 505, 507, 509, 510, 511, 514, 515, 516, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 544, 547, 548, 550, 552, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 601, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 998, 999, 1000, 1001, 1003, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1071, 1072, 1074, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
movie_3
How many actors have starred in the film ACADEMY DINOSAUR?
"ACADEMY DINOSAUR" is the title of film
SELECT COUNT(T1.actor_id) FROM film_actor AS T1 INNER JOIN film AS T2 ON T1.film_id = T2.film_id WHERE T2.title = 'ACADEMY DINOSAUR'
CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,118
9,118
CREATE TABLE `film` ( CREATE TABLE "film" film_id INTEGER primary key autoincrement, title TEXT not null ) CREATE TABLE `film_actor` ( CREATE TABLE "film_actor" actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, primary key actor_id, film_id )
[ "AS", "SELECT", "INNER JOIN", "ON", "COUNT", "FROM" ]
7
simple
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ 176, 218, 220, 254, 265, 317, 325, 369, 483, 537, 584, 596, 626, 658, 726, 814, 862, 900, 1039 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 35, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 61, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 271, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 286, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 368, 369, 370, 373, 374, 375, 376, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 462, 463, 464, 465, 466, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 504, 505, 507, 509, 510, 511, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 542, 544, 547, 548, 550, 552, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 661, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 795, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 999, 1000, 1001, 1003, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1074, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1113, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
movie_3
Please list the full names of all the actors that have starred in the film ACADEMY DINOSAUR.
full name refers to first_name, last_name; "ACADEMY DINOSAUR" is the title of film
SELECT T1.first_name, T1.last_name FROM actor AS T1 INNER JOIN film_actor AS T2 ON T1.actor_id = T2.actor_id INNER JOIN film AS T3 ON T2.film_id = T3.film_id WHERE T3.title = 'ACADEMY DINOSAUR'
CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,119
9,119
CREATE TABLE `actor` ( CREATE TABLE "actor" actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null ) CREATE TABLE `film` ( CREATE TABLE "film" film_id INTEGER primary key autoincrement, title TEXT not null ) CREATE TABLE `film_actor` ( CREATE TABLE "film_actor" actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, primary key actor_id, film_id )
[ "AS", "SELECT", "INNER JOIN", "ON", "FROM" ]
9
simple
{ "case_1": [ 265 ], "case_2": [ 265, 317, 626 ], "case_3": [ 176, 218, 220, 254, 265, 317, 325, 369, 483, 537, 584, 596, 626, 658, 726, 814, 862, 900, 1039 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 35, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 61, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 101, 102, 104, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 215, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 271, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 286, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 367, 368, 369, 370, 373, 374, 375, 376, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 462, 463, 464, 465, 466, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 504, 505, 506, 507, 508, 509, 510, 511, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 526, 527, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 542, 544, 547, 548, 550, 552, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 601, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 657, 658, 659, 660, 661, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 786, 787, 788, 790, 792, 793, 795, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 978, 980, 981, 982, 985, 986, 988, 991, 993, 994, 996, 997, 998, 999, 1000, 1001, 1003, 1004, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1074, 1075, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1113, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
movie_3
Among the films starring PENELOPE GUINESS, how many of them are released in 2006?
release in 2006 refers to release_year = 2006;
SELECT COUNT(T2.film_id) FROM actor AS T1 INNER JOIN film_actor AS T2 ON T1.actor_id = T2.actor_id INNER JOIN film AS T3 ON T2.film_id = T3.film_id WHERE T3.release_year = 2006 AND T1.first_name = 'PENELOPE' AND T1.last_name = 'GUINESS'
CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,120
9,120
CREATE TABLE `actor` ( CREATE TABLE "actor" actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null ) CREATE TABLE `film` ( CREATE TABLE "film" film_id INTEGER primary key autoincrement, release_year TEXT ) CREATE TABLE `film_actor` ( CREATE TABLE "film_actor" actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, primary key actor_id, film_id )
[ "AS", "AND", "SELECT", "INNER JOIN", "ON", "COUNT", "FROM" ]
12
medium
{ "case_1": [ 317, 626 ], "case_2": [ 265, 317, 626 ], "case_3": [ 176, 218, 220, 254, 265, 317, 325, 369, 483, 537, 584, 596, 626, 658, 726, 814, 862, 900, 1039 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 109, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 230, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 271, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 286, 287, 289, 290, 292, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 367, 368, 369, 370, 373, 374, 375, 376, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 399, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 462, 463, 464, 465, 466, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 504, 505, 507, 509, 510, 511, 512, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 542, 544, 547, 548, 550, 552, 554, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 600, 601, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 618, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 665, 666, 667, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 680, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 692, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 707, 710, 711, 712, 714, 715, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 730, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 795, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 817, 818, 819, 820, 822, 823, 824, 825, 827, 828, 829, 830, 831, 832, 833, 834, 835, 837, 838, 839, 841, 843, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 903, 904, 905, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 945, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 965, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 998, 999, 1000, 1001, 1003, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1019, 1020, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1074, 1078, 1079, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1113, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1126, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
movie_3
Please give the title of the film starring PENELOPE GUINESS and has the highest replacement cost.
highest replacement cost refers to Max (replacement_cost)
SELECT T3.title FROM actor AS T1 INNER JOIN film_actor AS T2 ON T1.actor_id = T2.actor_id INNER JOIN film AS T3 ON T2.film_id = T3.film_id WHERE T1.first_name = 'PENELOPE' AND T1.last_name = 'GUINESS' ORDER BY T3.replacement_cost DESC LIMIT 1
CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,121
9,121
CREATE TABLE `actor` ( CREATE TABLE "actor" actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null ) CREATE TABLE `film` ( CREATE TABLE "film" film_id INTEGER primary key autoincrement, title TEXT not null, replacement_cost REAL default 19.99 not null ) CREATE TABLE `film_actor` ( CREATE TABLE "film_actor" actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, primary key actor_id, film_id )
[ "AS", "AND", "SELECT", "ORDER BY", "LIMIT", "INNER JOIN", "ON", "DESC", "FROM" ]
13
medium
{ "case_1": [ 317, 626 ], "case_2": [ 265, 317, 626 ], "case_3": [ 176, 218, 220, 254, 265, 317, 325, 369, 404, 483, 537, 584, 596, 626, 658, 726, 814, 862, 900, 1039 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 33, 34, 36, 37, 38, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 80, 81, 82, 83, 84, 85, 86, 88, 89, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 108, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 173, 174, 175, 176, 177, 179, 180, 181, 183, 184, 185, 186, 187, 188, 189, 190, 191, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 208, 211, 212, 213, 214, 217, 218, 219, 220, 221, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 252, 254, 256, 257, 258, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 285, 286, 287, 289, 290, 291, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 352, 353, 354, 356, 357, 358, 359, 360, 361, 363, 364, 365, 368, 369, 370, 371, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 448, 449, 450, 451, 452, 454, 455, 456, 457, 459, 460, 462, 463, 464, 465, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 505, 507, 509, 511, 514, 515, 516, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 544, 547, 548, 550, 552, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 619, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 662, 663, 664, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 708, 710, 711, 712, 714, 715, 717, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 732, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 796, 797, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 815, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 836, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 869, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 934, 935, 936, 937, 938, 940, 943, 944, 946, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 972, 973, 974, 975, 977, 980, 981, 983, 985, 986, 987, 988, 991, 993, 994, 996, 997, 999, 1000, 1001, 1003, 1004, 1005, 1006, 1010, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1030, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1057, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1071, 1072, 1074, 1076, 1077, 1078, 1080, 1082, 1083, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1139, 1141 ] }
movie_3
Please list the full names of all the actors that have starred in the film with the highest replacement cost.
highest replacement cost refers to Max (replacement_cost); full name refers to first_name, last_name
SELECT first_name, last_name FROM actor AS T1 INNER JOIN film_actor AS T2 ON T1.actor_id = T2.actor_id INNER JOIN film AS T3 ON T2.film_id = T3.film_id ORDER BY T3.replacement_cost DESC LIMIT 1
CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,122
9,122
CREATE TABLE `actor` ( CREATE TABLE "actor" actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null ) CREATE TABLE `film` ( CREATE TABLE "film" film_id INTEGER primary key autoincrement, replacement_cost REAL default 19.99 not null ) CREATE TABLE `film_actor` ( CREATE TABLE "film_actor" actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, primary key actor_id, film_id )
[ "AS", "SELECT", "ORDER BY", "LIMIT", "INNER JOIN", "ON", "DESC", "FROM" ]
12
medium
{ "case_1": [ 317, 626 ], "case_2": [ 265, 317, 626 ], "case_3": [ 176, 218, 220, 254, 265, 317, 325, 369, 404, 483, 537, 584, 596, 626, 658, 726, 814, 862, 900, 1039 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 33, 34, 36, 37, 38, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 80, 81, 82, 83, 84, 85, 86, 88, 89, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 108, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 173, 174, 175, 176, 177, 179, 180, 181, 183, 184, 185, 186, 187, 188, 189, 190, 191, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 208, 211, 212, 213, 214, 217, 218, 219, 220, 221, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 252, 254, 256, 257, 258, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 285, 286, 287, 289, 290, 291, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 352, 353, 354, 356, 357, 358, 359, 360, 361, 363, 364, 365, 368, 369, 370, 371, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 448, 449, 450, 451, 452, 454, 455, 456, 457, 459, 460, 462, 463, 464, 465, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 505, 507, 509, 511, 514, 515, 516, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 544, 547, 548, 550, 552, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 619, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 662, 663, 664, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 708, 710, 711, 712, 714, 715, 717, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 732, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 796, 797, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 815, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 836, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 869, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 934, 935, 936, 937, 938, 940, 943, 944, 946, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 972, 973, 974, 975, 977, 980, 981, 983, 985, 986, 987, 988, 991, 993, 994, 996, 997, 999, 1000, 1001, 1003, 1004, 1005, 1006, 1010, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1030, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1057, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1071, 1072, 1074, 1076, 1077, 1078, 1080, 1082, 1083, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1139, 1141 ] }
movie_3
Among the films starring PENELOPE GUINESS, how many of them are in English?
"English" is the name of language
SELECT COUNT(T3.film_id) FROM actor AS T1 INNER JOIN film_actor AS T2 ON T1.actor_id = T2.actor_id INNER JOIN film AS T3 ON T2.film_id = T3.film_id INNER JOIN language AS T4 ON T3.language_id = T4.language_id WHERE T4.name = 'English' AND T1.first_name = 'PENELOPE' AND T1.last_name = 'GUINESS'
CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,123
9,123
CREATE TABLE `actor` ( CREATE TABLE "actor" actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null ) CREATE TABLE `film` ( CREATE TABLE "film" film_id INTEGER primary key autoincrement, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade ) CREATE TABLE `film_actor` ( CREATE TABLE "film_actor" actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, primary key actor_id, film_id ) CREATE TABLE `language` ( CREATE TABLE "language" language_id INTEGER primary key autoincrement, name TEXT not null )
[ "AS", "AND", "SELECT", "INNER JOIN", "ON", "COUNT", "FROM" ]
15
medium
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ 176, 218, 220, 254, 265, 317, 325, 369, 483, 537, 584, 596, 626, 658, 726, 814, 862, 900, 1039 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 109, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 230, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 271, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 286, 287, 289, 290, 292, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 367, 368, 369, 370, 373, 374, 375, 376, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 399, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 462, 463, 464, 465, 466, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 504, 505, 507, 509, 510, 511, 512, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 542, 544, 547, 548, 550, 552, 554, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 600, 601, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 618, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 665, 666, 667, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 680, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 692, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 707, 710, 711, 712, 714, 715, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 730, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 795, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 817, 818, 819, 820, 822, 823, 824, 825, 827, 828, 829, 830, 831, 832, 833, 834, 835, 837, 838, 839, 841, 843, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 903, 904, 905, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 945, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 965, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 998, 999, 1000, 1001, 1003, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1019, 1020, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1074, 1078, 1079, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1113, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1126, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
movie_3
What is the title of the film with the longest duration time and stars PENELOPE GUINESS?
longest duration of film refers to Max(length)
SELECT T3.title FROM actor AS T1 INNER JOIN film_actor AS T2 ON T1.actor_id = T2.actor_id INNER JOIN film AS T3 ON T2.film_id = T3.film_id WHERE T1.first_name = 'PENELOPE' AND T1.last_name = 'GUINESS' ORDER BY T3.length DESC LIMIT 1
CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,124
9,124
CREATE TABLE `actor` ( CREATE TABLE "actor" actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null ) CREATE TABLE `film` ( CREATE TABLE "film" film_id INTEGER primary key autoincrement, title TEXT not null, length INTEGER ) CREATE TABLE `film_actor` ( CREATE TABLE "film_actor" actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, primary key actor_id, film_id )
[ "AS", "AND", "SELECT", "ORDER BY", "LIMIT", "INNER JOIN", "ON", "DESC", "length", "FROM" ]
14
medium
{ "case_1": [ 317, 626 ], "case_2": [ 265, 317, 626 ], "case_3": [ 176, 265, 317, 325, 404, 537, 584, 626, 726, 814, 1039 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 1, 4, 5, 8, 10, 11, 12, 19, 20, 21, 22, 24, 26, 29, 30, 33, 36, 37, 38, 39, 44, 45, 47, 49, 51, 52, 53, 55, 57, 59, 62, 63, 66, 68, 69, 71, 73, 74, 75, 76, 85, 86, 88, 89, 90, 93, 94, 95, 96, 98, 99, 111, 112, 113, 115, 116, 117, 118, 119, 121, 125, 127, 128, 129, 131, 138, 141, 142, 143, 144, 146, 150, 152, 154, 158, 159, 160, 162, 163, 164, 167, 169, 170, 172, 175, 176, 177, 179, 180, 183, 184, 187, 188, 197, 199, 200, 202, 206, 213, 214, 219, 227, 229, 233, 239, 240, 244, 247, 256, 258, 262, 265, 266, 267, 268, 272, 275, 276, 277, 278, 281, 282, 286, 296, 301, 309, 311, 313, 314, 315, 317, 319, 320, 324, 325, 329, 330, 334, 336, 339, 341, 342, 345, 349, 353, 356, 361, 364, 365, 368, 370, 373, 374, 376, 378, 379, 381, 382, 383, 385, 391, 393, 394, 395, 398, 402, 403, 404, 405, 406, 408, 409, 411, 413, 414, 416, 417, 419, 424, 425, 426, 427, 428, 429, 433, 434, 435, 436, 437, 438, 440, 444, 445, 446, 448, 451, 452, 454, 455, 460, 462, 463, 464, 469, 470, 475, 476, 477, 480, 482, 490, 493, 494, 495, 496, 497, 498, 500, 505, 507, 514, 515, 516, 519, 520, 522, 524, 526, 528, 529, 530, 532, 533, 536, 537, 538, 539, 541, 542, 544, 548, 552, 557, 558, 559, 560, 561, 562, 563, 566, 567, 578, 579, 581, 582, 584, 586, 588, 589, 590, 592, 595, 605, 608, 610, 611, 612, 613, 615, 621, 624, 625, 626, 627, 632, 633, 634, 637, 638, 641, 643, 645, 648, 651, 654, 657, 659, 663, 665, 666, 668, 669, 671, 675, 677, 678, 681, 683, 684, 685, 686, 687, 688, 690, 691, 693, 697, 699, 701, 702, 712, 714, 715, 719, 726, 727, 733, 734, 735, 739, 740, 741, 743, 746, 747, 749, 752, 753, 754, 756, 758, 759, 760, 763, 765, 767, 768, 773, 775, 776, 777, 778, 780, 783, 788, 790, 793, 797, 799, 800, 803, 804, 806, 807, 808, 810, 814, 818, 819, 823, 824, 825, 827, 829, 830, 832, 835, 838, 844, 848, 849, 850, 851, 853, 858, 859, 860, 861, 866, 867, 870, 873, 876, 877, 878, 879, 886, 888, 889, 891, 892, 893, 895, 896, 901, 902, 905, 907, 911, 917, 918, 923, 924, 927, 928, 929, 930, 931, 932, 934, 935, 944, 949, 950, 951, 953, 954, 956, 958, 961, 962, 963, 966, 967, 969, 970, 973, 974, 975, 977, 981, 985, 986, 991, 994, 996, 1000, 1001, 1004, 1005, 1006, 1010, 1013, 1017, 1019, 1022, 1023, 1025, 1027, 1031, 1034, 1037, 1038, 1039, 1042, 1044, 1046, 1047, 1049, 1050, 1051, 1056, 1058, 1061, 1063, 1064, 1065, 1067, 1068, 1071, 1072, 1080, 1084, 1086, 1092, 1094, 1100, 1101, 1103, 1104, 1105, 1109, 1115, 1119, 1123, 1124, 1128, 1131, 1136, 1137 ] }
movie_3
Please list the titles of all the films in the category of "Horror".
"Horror" is the name of category
SELECT T1.title FROM film AS T1 INNER JOIN film_category AS T2 ON T1.film_id = T2.film_id INNER JOIN category AS T3 ON T2.category_id = T3.category_id WHERE T3.name = 'Horror'
CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,125
9,125
CREATE TABLE `category` ( CREATE TABLE "category" category_id INTEGER primary key autoincrement, name TEXT not null ) CREATE TABLE `film` ( CREATE TABLE "film" film_id INTEGER primary key autoincrement, title TEXT not null ) CREATE TABLE `film_category` ( CREATE TABLE "film_category" film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, primary key film_id, category_id )
[ "AS", "SELECT", "INNER JOIN", "ON", "FROM" ]
9
simple
{ "case_1": [ 658 ], "case_2": [ 176, 658 ], "case_3": [ 176, 218, 220, 254, 265, 317, 325, 369, 483, 537, 584, 596, 626, 658, 726, 814, 862, 900, 1039 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 35, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 61, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 101, 102, 104, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 215, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 271, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 286, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 367, 368, 369, 370, 373, 374, 375, 376, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 462, 463, 464, 465, 466, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 504, 505, 506, 507, 508, 509, 510, 511, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 526, 527, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 542, 544, 547, 548, 550, 552, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 601, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 657, 658, 659, 660, 661, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 786, 787, 788, 790, 792, 793, 795, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 978, 980, 981, 982, 985, 986, 988, 991, 993, 994, 996, 997, 998, 999, 1000, 1001, 1003, 1004, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1074, 1075, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1113, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
movie_3
How many films are there under the category of "Horror"?
"Horror" is the name of category
SELECT COUNT(T1.film_id) FROM film_category AS T1 INNER JOIN category AS T2 ON T1.category_id = T2.category_id WHERE T2.name = 'Horror'
CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,126
9,126
CREATE TABLE `category` ( CREATE TABLE "category" category_id INTEGER primary key autoincrement, name TEXT not null ) CREATE TABLE `film_category` ( CREATE TABLE "film_category" film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, primary key film_id, category_id )
[ "AS", "SELECT", "INNER JOIN", "ON", "COUNT", "FROM" ]
7
simple
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ 176, 218, 220, 254, 265, 317, 325, 369, 483, 537, 584, 596, 626, 658, 726, 814, 862, 900, 1039 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 35, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 61, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 271, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 286, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 368, 369, 370, 373, 374, 375, 376, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 462, 463, 464, 465, 466, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 504, 505, 507, 509, 510, 511, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 542, 544, 547, 548, 550, 552, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 661, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 795, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 999, 1000, 1001, 1003, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1074, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1113, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
movie_3
Please list the titles of all the films under the category of "Horror" and has a rental rate of $2.99.
"Horror" is the name of category; rental rate of $2.99 refers to rental_rate = 2.99
SELECT T1.title FROM film AS T1 INNER JOIN film_category AS T2 ON T1.film_id = T2.film_id INNER JOIN category AS T3 ON T2.category_id = T3.category_id WHERE T3.name = 'Horror' AND T1.rental_rate = 2.99
CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,127
9,127
CREATE TABLE `category` ( CREATE TABLE "category" category_id INTEGER primary key autoincrement, name TEXT not null ) CREATE TABLE `film` ( CREATE TABLE "film" film_id INTEGER primary key autoincrement, title TEXT not null, rental_rate REAL default 4.99 not null ) CREATE TABLE `film_category` ( CREATE TABLE "film_category" film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, primary key film_id, category_id )
[ "AS", "AND", "SELECT", "INNER JOIN", "ON", "FROM" ]
10
simple
{ "case_1": [ 658 ], "case_2": [ 176, 658 ], "case_3": [ 176, 218, 220, 254, 265, 317, 325, 369, 483, 537, 584, 596, 626, 658, 726, 814, 862, 900, 1039 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 88, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 367, 368, 369, 370, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 447, 448, 449, 450, 451, 452, 454, 455, 456, 457, 459, 460, 462, 463, 464, 465, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 505, 507, 509, 510, 511, 514, 515, 516, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 544, 547, 548, 550, 552, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 601, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 998, 999, 1000, 1001, 1003, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1071, 1072, 1074, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
movie_3
For how many times has the customer RUTH MARTINEZ rented a film?
times of rented refers to Count(rental_id)
SELECT COUNT(T2.rental_id) FROM customer AS T1 INNER JOIN rental AS T2 ON T1.customer_id = T2.customer_id WHERE T1.first_name = 'RUTH' AND T1.last_name = 'MARTINEZ'
CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,128
9,128
CREATE TABLE `customer` ( CREATE TABLE "customer" customer_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null ) CREATE TABLE `rental` ( CREATE TABLE "rental" rental_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, customer_id )
[ "AS", "AND", "SELECT", "INNER JOIN", "ON", "COUNT", "FROM" ]
8
simple
{ "case_1": [ -1 ], "case_2": [ 325, 537 ], "case_3": [ 176, 218, 220, 254, 265, 317, 325, 369, 483, 537, 584, 596, 626, 658, 726, 814, 862, 900, 1039 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 109, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 230, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 271, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 286, 287, 289, 290, 292, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 367, 368, 369, 370, 373, 374, 375, 376, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 399, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 462, 463, 464, 465, 466, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 504, 505, 507, 509, 510, 511, 512, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 542, 544, 547, 548, 550, 552, 554, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 600, 601, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 618, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 665, 666, 667, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 680, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 692, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 707, 710, 711, 712, 714, 715, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 730, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 795, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 817, 818, 819, 820, 822, 823, 824, 825, 827, 828, 829, 830, 831, 832, 833, 834, 835, 837, 838, 839, 841, 843, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 903, 904, 905, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 945, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 965, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 998, 999, 1000, 1001, 1003, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1019, 1020, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1074, 1078, 1079, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1113, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1126, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
movie_3
Please list the titles of all the films that the customer RUTH MARTINEZ has rented.
SELECT T4.title FROM customer AS T1 INNER JOIN rental AS T2 ON T1.customer_id = T2.customer_id INNER JOIN inventory AS T3 ON T2.inventory_id = T3.inventory_id INNER JOIN film AS T4 ON T3.film_id = T4.film_id WHERE T1.first_name = 'RUTH' AND T1.last_name = 'MARTINEZ'
CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,129
9,129
CREATE TABLE `customer` ( CREATE TABLE "customer" customer_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null ) CREATE TABLE `film` ( CREATE TABLE "film" film_id INTEGER primary key autoincrement, title TEXT not null ) CREATE TABLE `inventory` ( CREATE TABLE "inventory" inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade ) CREATE TABLE `rental` ( inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, inventory_id, customer_id )
[ "AS", "AND", "SELECT", "INNER JOIN", "ON", "FROM" ]
13
medium
{ "case_1": [ 814 ], "case_2": [ 814 ], "case_3": [ 176, 218, 220, 254, 265, 317, 325, 369, 483, 537, 584, 596, 626, 658, 726, 814, 862, 900, 1039 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 88, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 367, 368, 369, 370, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 447, 448, 449, 450, 451, 452, 454, 455, 456, 457, 459, 460, 462, 463, 464, 465, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 505, 507, 509, 510, 511, 514, 515, 516, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 544, 547, 548, 550, 552, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 601, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 998, 999, 1000, 1001, 1003, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1071, 1072, 1074, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
movie_3
Among the films that the customer RUTH MARTINEZ has rented, how many of them are released in 2006?
release in 2006 refers to release_year = 2006
SELECT COUNT(T1.customer_id) FROM customer AS T1 INNER JOIN rental AS T2 ON T1.customer_id = T2.customer_id INNER JOIN inventory AS T3 ON T2.inventory_id = T3.inventory_id INNER JOIN film AS T4 ON T3.film_id = T4.film_id WHERE T4.release_year = 2006 AND T1.first_name = 'RUTH' AND T1.last_name = 'MARTINEZ'
CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,130
9,130
CREATE TABLE `customer` ( CREATE TABLE "customer" customer_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null ) CREATE TABLE `film` ( CREATE TABLE "film" film_id INTEGER primary key autoincrement, release_year TEXT ) CREATE TABLE `inventory` ( CREATE TABLE "inventory" inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade ) CREATE TABLE `rental` ( inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, inventory_id, customer_id )
[ "AS", "AND", "SELECT", "INNER JOIN", "ON", "COUNT", "FROM" ]
15
medium
{ "case_1": [ 814 ], "case_2": [ 814 ], "case_3": [ 176, 218, 220, 254, 265, 317, 325, 369, 483, 537, 584, 596, 626, 658, 726, 814, 862, 900, 1039 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 109, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 230, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 271, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 286, 287, 289, 290, 292, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 367, 368, 369, 370, 373, 374, 375, 376, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 399, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 462, 463, 464, 465, 466, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 504, 505, 507, 509, 510, 511, 512, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 542, 544, 547, 548, 550, 552, 554, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 600, 601, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 618, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 665, 666, 667, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 680, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 692, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 707, 710, 711, 712, 714, 715, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 730, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 795, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 817, 818, 819, 820, 822, 823, 824, 825, 827, 828, 829, 830, 831, 832, 833, 834, 835, 837, 838, 839, 841, 843, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 903, 904, 905, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 945, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 965, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 998, 999, 1000, 1001, 1003, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1019, 1020, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1074, 1078, 1079, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1113, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1126, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
movie_3
Among the films that the customer RUTH MARTINEZ has rented, what is the title of the one with the highest replacement cost?
highest replacement cost refers to Max(replacement_cost)
SELECT T4.title FROM customer AS T1 INNER JOIN rental AS T2 ON T1.customer_id = T2.customer_id INNER JOIN inventory AS T3 ON T2.inventory_id = T3.inventory_id INNER JOIN film AS T4 ON T3.film_id = T4.film_id WHERE T1.first_name = 'RUTH' AND T1.last_name = 'MARTINEZ' ORDER BY T4.replacement_cost DESC LIMIT 1
CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,131
9,131
CREATE TABLE `customer` ( CREATE TABLE "customer" customer_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null ) CREATE TABLE `film` ( CREATE TABLE "film" film_id INTEGER primary key autoincrement, title TEXT not null, replacement_cost REAL default 19.99 not null ) CREATE TABLE `inventory` ( CREATE TABLE "inventory" inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade ) CREATE TABLE `rental` ( inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, inventory_id, customer_id )
[ "AS", "AND", "SELECT", "ORDER BY", "LIMIT", "INNER JOIN", "ON", "DESC", "FROM" ]
16
challenging
{ "case_1": [ -1 ], "case_2": [ 814 ], "case_3": [ 176, 218, 220, 254, 265, 317, 325, 369, 404, 483, 537, 584, 596, 626, 658, 726, 814, 862, 900, 1039 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 33, 34, 36, 37, 38, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 80, 81, 82, 83, 84, 85, 86, 88, 89, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 108, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 173, 174, 175, 176, 177, 179, 180, 181, 183, 184, 185, 186, 187, 188, 189, 190, 191, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 208, 211, 212, 213, 214, 217, 218, 219, 220, 221, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 252, 254, 256, 257, 258, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 285, 286, 287, 289, 290, 291, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 352, 353, 354, 356, 357, 358, 359, 360, 361, 363, 364, 365, 368, 369, 370, 371, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 448, 449, 450, 451, 452, 454, 455, 456, 457, 459, 460, 462, 463, 464, 465, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 505, 507, 509, 511, 514, 515, 516, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 544, 547, 548, 550, 552, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 619, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 662, 663, 664, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 708, 710, 711, 712, 714, 715, 717, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 732, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 796, 797, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 815, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 836, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 869, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 934, 935, 936, 937, 938, 940, 943, 944, 946, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 972, 973, 974, 975, 977, 980, 981, 983, 985, 986, 987, 988, 991, 993, 994, 996, 997, 999, 1000, 1001, 1003, 1004, 1005, 1006, 1010, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1030, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1057, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1071, 1072, 1074, 1076, 1077, 1078, 1080, 1082, 1083, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1139, 1141 ] }
movie_3
Please list the full names of all the customers who have rented the film with the highest replacement cost.
full name refers to first_name, last_name; highest replacement cost refers to Max(replacement_cost)
SELECT T1.first_name, T1.last_name FROM customer AS T1 INNER JOIN rental AS T2 ON T1.customer_id = T2.customer_id INNER JOIN inventory AS T3 ON T2.inventory_id = T3.inventory_id INNER JOIN film AS T4 ON T3.film_id = T4.film_id ORDER BY T4.replacement_cost DESC LIMIT 1
CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,132
9,132
CREATE TABLE `customer` ( CREATE TABLE "customer" customer_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null ) CREATE TABLE `film` ( CREATE TABLE "film" film_id INTEGER primary key autoincrement, replacement_cost REAL default 19.99 not null ) CREATE TABLE `inventory` ( CREATE TABLE "inventory" inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade ) CREATE TABLE `rental` ( inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, inventory_id, customer_id )
[ "AS", "SELECT", "ORDER BY", "LIMIT", "INNER JOIN", "ON", "DESC", "FROM" ]
15
medium
{ "case_1": [ 814 ], "case_2": [ 814 ], "case_3": [ 176, 218, 220, 254, 265, 317, 325, 369, 404, 483, 537, 584, 596, 626, 658, 726, 814, 862, 900, 1039 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 33, 34, 36, 37, 38, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 80, 81, 82, 83, 84, 85, 86, 88, 89, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 108, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 173, 174, 175, 176, 177, 179, 180, 181, 183, 184, 185, 186, 187, 188, 189, 190, 191, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 208, 211, 212, 213, 214, 217, 218, 219, 220, 221, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 252, 254, 256, 257, 258, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 285, 286, 287, 289, 290, 291, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 352, 353, 354, 356, 357, 358, 359, 360, 361, 363, 364, 365, 368, 369, 370, 371, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 448, 449, 450, 451, 452, 454, 455, 456, 457, 459, 460, 462, 463, 464, 465, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 505, 507, 509, 511, 514, 515, 516, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 544, 547, 548, 550, 552, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 619, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 662, 663, 664, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 708, 710, 711, 712, 714, 715, 717, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 732, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 796, 797, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 815, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 836, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 869, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 934, 935, 936, 937, 938, 940, 943, 944, 946, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 972, 973, 974, 975, 977, 980, 981, 983, 985, 986, 987, 988, 991, 993, 994, 996, 997, 999, 1000, 1001, 1003, 1004, 1005, 1006, 1010, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1030, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1057, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1071, 1072, 1074, 1076, 1077, 1078, 1080, 1082, 1083, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1139, 1141 ] }
movie_3
How many films rented to the customer RUTH MARTINEZ were returned in August, 2005?
returned in August, 2005 refers to year(return_date) = 2005 and month (return_date) = 8
SELECT COUNT(T1.customer_id) FROM customer AS T1 INNER JOIN rental AS T2 ON T1.customer_id = T2.customer_id WHERE T1.first_name = 'RUTH' AND T1.last_name = 'MARTINEZ' AND STRFTIME('%m',T2.return_date) = '8' AND STRFTIME('%Y', T2.return_date) = '2005'
CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,133
9,133
CREATE TABLE `customer` ( CREATE TABLE "customer" customer_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null ) CREATE TABLE `rental` ( customer_id INTEGER not null references customer on update cascade, return_date DATETIME, customer_id )
[ "AS", "AND", "SELECT", "INNER JOIN", "ON", "STRFTIME", "COUNT", "FROM" ]
12
medium
{ "case_1": [ 325, 537 ], "case_2": [ 325, 537 ], "case_3": [ 176, 218, 220, 254, 265, 317, 325, 369, 483, 537, 584, 596, 626, 658, 726, 814, 862, 900, 1039 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 88, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 368, 369, 370, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 447, 448, 449, 450, 451, 452, 454, 455, 456, 457, 459, 460, 462, 463, 464, 465, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 505, 507, 509, 510, 511, 514, 515, 516, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 544, 547, 548, 550, 552, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 718, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 999, 1000, 1001, 1003, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1071, 1072, 1074, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
movie_3
Please give the full name of the customer that have rented the most films.
full name refers to first_name, last_name; customer who rented the most film refers to Max(count(rental_id))
SELECT T.first_name, T.last_name FROM ( SELECT T1.first_name, T1.last_name, COUNT(T2.rental_id) AS num FROM customer AS T1 INNER JOIN rental AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.first_name, T1.last_name ) AS T ORDER BY T.num DESC LIMIT 1
CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,134
9,134
CREATE TABLE `customer` ( CREATE TABLE "customer" customer_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null ) CREATE TABLE `rental` ( CREATE TABLE "rental" rental_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, customer_id )
[ "GROUP BY", "AS", "SELECT", "ORDER BY", "LIMIT", "INNER JOIN", "ON", "DESC", "COUNT", "FROM" ]
15
medium
{ "case_1": [ 325, 537 ], "case_2": [ 325, 537 ], "case_3": [ 254, 317, 325, 537, 584, 596, 626, 658, 814 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 4, 6, 10, 11, 13, 15, 16, 20, 22, 27, 28, 29, 30, 36, 37, 47, 49, 51, 53, 55, 59, 62, 63, 68, 69, 73, 74, 75, 77, 78, 82, 86, 88, 89, 91, 93, 96, 98, 106, 108, 113, 115, 117, 118, 119, 121, 125, 126, 131, 138, 140, 142, 143, 146, 148, 150, 152, 159, 160, 162, 163, 164, 167, 169, 170, 173, 175, 179, 183, 184, 185, 187, 188, 189, 190, 191, 196, 197, 199, 200, 202, 206, 212, 213, 214, 225, 226, 227, 229, 233, 234, 239, 243, 244, 247, 252, 254, 256, 261, 262, 267, 268, 269, 275, 276, 277, 278, 281, 285, 286, 291, 299, 301, 309, 311, 313, 314, 316, 317, 319, 320, 323, 324, 325, 329, 330, 334, 335, 336, 338, 339, 341, 342, 344, 345, 348, 349, 352, 353, 354, 356, 358, 359, 360, 364, 365, 370, 371, 373, 374, 375, 378, 379, 381, 382, 383, 384, 385, 391, 392, 394, 395, 401, 403, 406, 409, 411, 412, 416, 417, 424, 426, 428, 429, 434, 435, 436, 444, 445, 448, 451, 454, 460, 462, 464, 465, 467, 469, 471, 473, 476, 477, 478, 482, 484, 487, 488, 490, 493, 495, 497, 500, 505, 509, 515, 516, 519, 520, 526, 530, 532, 535, 536, 537, 538, 542, 544, 547, 548, 552, 558, 559, 560, 563, 564, 566, 567, 573, 578, 579, 580, 581, 582, 584, 586, 590, 592, 595, 596, 597, 606, 608, 611, 613, 620, 621, 625, 626, 627, 630, 632, 633, 634, 637, 638, 641, 645, 646, 649, 651, 654, 657, 658, 659, 662, 663, 664, 665, 668, 669, 671, 681, 687, 688, 690, 691, 694, 696, 698, 701, 703, 705, 712, 714, 719, 720, 721, 727, 733, 734, 735, 736, 739, 740, 743, 748, 749, 750, 751, 752, 753, 756, 759, 760, 762, 768, 769, 772, 778, 779, 787, 790, 796, 797, 799, 800, 802, 803, 804, 810, 812, 813, 814, 818, 819, 823, 824, 827, 830, 838, 839, 841, 849, 850, 851, 853, 857, 861, 866, 867, 869, 870, 874, 876, 877, 882, 886, 888, 889, 891, 893, 896, 897, 898, 901, 902, 909, 911, 912, 915, 917, 918, 922, 923, 924, 926, 927, 929, 930, 932, 934, 935, 943, 950, 951, 953, 954, 956, 958, 961, 962, 963, 966, 967, 969, 970, 972, 973, 975, 977, 981, 983, 985, 986, 987, 993, 994, 996, 1004, 1005, 1006, 1010, 1013, 1015, 1017, 1022, 1023, 1025, 1030, 1034, 1037, 1038, 1042, 1043, 1047, 1049, 1050, 1051, 1056, 1057, 1058, 1062, 1064, 1065, 1067, 1068, 1071, 1072, 1076, 1077, 1078, 1082, 1084, 1086, 1087, 1091, 1094, 1100, 1101, 1103, 1104, 1106, 1112, 1119, 1123, 1124, 1128, 1131, 1133, 1134, 1135, 1137 ] }
movie_3
Among the customers who have rented the film ACADEMY DINOSAUR, how many of them are active?
"ACADEMY DINOSAUR" is the title of film; customer refers to customer_id; active refers to active = 1
SELECT COUNT(T1.customer_id) FROM customer AS T1 INNER JOIN rental AS T2 ON T1.customer_id = T2.customer_id INNER JOIN inventory AS T3 ON T2.inventory_id = T3.inventory_id INNER JOIN film AS T4 ON T3.film_id = T4.film_id WHERE T1.active = 1 AND T4.title = 'ACADEMY DINOSAUR'
CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,135
9,135
CREATE TABLE `customer` ( CREATE TABLE "customer" customer_id INTEGER primary key autoincrement, active INTEGER default 1 not null ) CREATE TABLE `film` ( CREATE TABLE "film" film_id INTEGER primary key autoincrement, title TEXT not null ) CREATE TABLE `inventory` ( CREATE TABLE "inventory" inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade ) CREATE TABLE `rental` ( inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, inventory_id, customer_id )
[ "AS", "AND", "SELECT", "INNER JOIN", "ON", "COUNT", "FROM" ]
14
medium
{ "case_1": [ 814 ], "case_2": [ 814 ], "case_3": [ 176, 218, 220, 254, 265, 317, 325, 369, 483, 537, 584, 596, 626, 658, 726, 814, 862, 900, 1039 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 109, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 230, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 271, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 286, 287, 289, 290, 292, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 367, 368, 369, 370, 373, 374, 375, 376, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 399, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 462, 463, 464, 465, 466, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 504, 505, 507, 509, 510, 511, 512, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 542, 544, 547, 548, 550, 552, 554, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 600, 601, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 618, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 665, 666, 667, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 680, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 692, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 707, 710, 711, 712, 714, 715, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 730, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 795, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 817, 818, 819, 820, 822, 823, 824, 825, 827, 828, 829, 830, 831, 832, 833, 834, 835, 837, 838, 839, 841, 843, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 903, 904, 905, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 945, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 965, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 998, 999, 1000, 1001, 1003, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1019, 1020, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1074, 1078, 1079, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1113, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1126, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
movie_3
Which film is rented for the most times by the customers? Please give its title.
film refers to title; film rented the most times refers to title where Max(Count(rental_id))
SELECT T.title FROM ( SELECT T1.title, COUNT(T3.rental_id) AS num FROM film AS T1 INNER JOIN inventory AS T2 ON T1.film_id = T2.film_id INNER JOIN rental AS T3 ON T2.inventory_id = T3.inventory_id GROUP BY T1.title ) AS T ORDER BY T.num DESC LIMIT 1
CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,136
9,136
CREATE TABLE `film` ( CREATE TABLE "film" film_id INTEGER primary key autoincrement, title TEXT not null ) CREATE TABLE `inventory` ( CREATE TABLE "inventory" inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade ) CREATE TABLE `rental` ( CREATE TABLE "rental" rental_id INTEGER primary key autoincrement, inventory_id INTEGER not null references inventory on update cascade, inventory_id )
[ "GROUP BY", "AS", "SELECT", "ORDER BY", "LIMIT", "INNER JOIN", "ON", "DESC", "COUNT", "FROM" ]
18
challenging
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ 254, 317, 325, 537, 584, 596, 626, 658, 814 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 4, 6, 10, 11, 13, 15, 16, 20, 22, 27, 28, 29, 30, 36, 37, 47, 49, 51, 53, 55, 59, 62, 63, 68, 69, 73, 74, 75, 77, 78, 82, 86, 88, 89, 91, 93, 96, 98, 106, 108, 113, 115, 117, 118, 119, 121, 125, 126, 131, 138, 140, 142, 143, 146, 148, 150, 152, 159, 160, 162, 163, 164, 167, 169, 170, 173, 175, 179, 183, 184, 185, 187, 188, 189, 190, 191, 196, 197, 199, 200, 202, 206, 212, 213, 214, 225, 226, 227, 229, 233, 234, 239, 243, 244, 247, 252, 254, 256, 261, 262, 267, 268, 269, 275, 276, 277, 278, 281, 285, 286, 291, 299, 301, 309, 311, 313, 314, 316, 317, 319, 320, 323, 324, 325, 329, 330, 334, 335, 336, 338, 339, 341, 342, 344, 345, 348, 349, 352, 353, 354, 356, 358, 359, 360, 364, 365, 370, 371, 373, 374, 375, 378, 379, 381, 382, 383, 384, 385, 391, 392, 394, 395, 401, 403, 406, 409, 411, 412, 416, 417, 424, 426, 428, 429, 434, 435, 436, 444, 445, 448, 451, 454, 460, 462, 464, 465, 467, 469, 471, 473, 476, 477, 478, 482, 484, 487, 488, 490, 493, 495, 497, 500, 505, 509, 515, 516, 519, 520, 526, 530, 532, 535, 536, 537, 538, 542, 544, 547, 548, 552, 558, 559, 560, 563, 564, 566, 567, 573, 578, 579, 580, 581, 582, 584, 586, 590, 592, 595, 596, 597, 606, 608, 611, 613, 620, 621, 625, 626, 627, 630, 632, 633, 634, 637, 638, 641, 645, 646, 649, 651, 654, 657, 658, 659, 662, 663, 664, 665, 668, 669, 671, 681, 687, 688, 690, 691, 694, 696, 698, 701, 703, 705, 712, 714, 719, 720, 721, 727, 733, 734, 735, 736, 739, 740, 743, 748, 749, 750, 751, 752, 753, 756, 759, 760, 762, 768, 769, 772, 778, 779, 787, 790, 796, 797, 799, 800, 802, 803, 804, 810, 812, 813, 814, 818, 819, 823, 824, 827, 830, 838, 839, 841, 849, 850, 851, 853, 857, 861, 866, 867, 869, 870, 874, 876, 877, 882, 886, 888, 889, 891, 893, 896, 897, 898, 901, 902, 909, 911, 912, 915, 917, 918, 922, 923, 924, 926, 927, 929, 930, 932, 934, 935, 943, 950, 951, 953, 954, 956, 958, 961, 962, 963, 966, 967, 969, 970, 972, 973, 975, 977, 981, 983, 985, 986, 987, 993, 994, 996, 1004, 1005, 1006, 1010, 1013, 1015, 1017, 1022, 1023, 1025, 1030, 1034, 1037, 1038, 1042, 1043, 1047, 1049, 1050, 1051, 1056, 1057, 1058, 1062, 1064, 1065, 1067, 1068, 1071, 1072, 1076, 1077, 1078, 1082, 1084, 1086, 1087, 1091, 1094, 1100, 1101, 1103, 1104, 1106, 1112, 1119, 1123, 1124, 1128, 1131, 1133, 1134, 1135, 1137 ] }
movie_3
Which customer has rented more movies, RUTH MARTINEZ or LINDA WILLIAMS?
rented more movie Max(Count(customer_id)); "RUTH MARTINEZ" and "LINDA WILLIAMS" are both full name of customer
SELECT T.first_name, T.last_name FROM ( SELECT T1.first_name, T1.last_name, COUNT(T1.customer_id) AS num FROM customer AS T1 INNER JOIN rental AS T2 ON T1.customer_id = T2.customer_id WHERE (T1.first_name = 'RUTH' AND T1.last_name = 'MARTINEZ') OR (T1.first_name = 'LINDA' AND T1.last_name = 'WILLIAMS') GROUP BY T1.first_name, T1.last_name ) AS T ORDER BY T.num DESC LIMIT 1
CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,137
9,137
CREATE TABLE `customer` ( CREATE TABLE "customer" customer_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null ) CREATE TABLE `rental` ( customer_id INTEGER not null references customer on update cascade, customer_id )
[ "GROUP BY", "OR", "AND", "SELECT", "AS", "ORDER BY", "LIMIT", "INNER JOIN", "ON", "DESC", "COUNT", "FROM" ]
18
challenging
{ "case_1": [ -1 ], "case_2": [ 325, 537 ], "case_3": [ 317, 325, 537, 584, 626, 814 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 1, 4, 10, 11, 13, 15, 20, 22, 28, 29, 30, 36, 37, 47, 49, 51, 53, 55, 59, 62, 63, 68, 69, 73, 74, 75, 78, 86, 88, 89, 93, 96, 98, 108, 113, 115, 117, 118, 119, 121, 125, 126, 131, 138, 140, 142, 143, 146, 150, 152, 159, 160, 162, 163, 164, 167, 169, 170, 173, 175, 179, 183, 184, 187, 188, 191, 197, 199, 200, 202, 206, 213, 214, 227, 229, 233, 239, 244, 247, 252, 256, 262, 267, 268, 275, 276, 277, 278, 281, 286, 301, 309, 311, 313, 314, 317, 319, 320, 324, 325, 329, 330, 334, 336, 339, 341, 342, 344, 345, 348, 349, 352, 353, 356, 359, 364, 365, 370, 371, 373, 374, 378, 379, 381, 382, 383, 385, 391, 394, 395, 403, 406, 409, 411, 416, 417, 424, 426, 428, 429, 434, 435, 436, 444, 445, 448, 451, 454, 460, 462, 464, 469, 473, 476, 477, 482, 490, 493, 495, 497, 500, 505, 515, 516, 519, 520, 526, 530, 532, 536, 537, 538, 542, 544, 548, 552, 558, 559, 560, 563, 566, 567, 578, 579, 581, 582, 584, 586, 590, 592, 595, 608, 611, 613, 621, 625, 626, 627, 630, 632, 633, 634, 637, 638, 641, 645, 651, 654, 657, 659, 663, 664, 665, 668, 669, 671, 681, 687, 688, 690, 691, 696, 698, 701, 703, 712, 714, 719, 721, 727, 733, 734, 735, 739, 740, 743, 748, 749, 752, 753, 756, 759, 760, 768, 778, 779, 790, 797, 799, 800, 803, 804, 810, 814, 818, 819, 823, 824, 827, 829, 830, 838, 849, 850, 851, 853, 861, 866, 867, 869, 870, 876, 877, 886, 888, 889, 891, 893, 896, 901, 902, 911, 917, 918, 923, 924, 927, 929, 930, 932, 934, 935, 950, 951, 953, 954, 956, 958, 961, 962, 963, 966, 967, 969, 970, 972, 973, 975, 977, 981, 985, 986, 993, 994, 996, 1005, 1006, 1010, 1013, 1017, 1022, 1023, 1025, 1030, 1034, 1037, 1038, 1042, 1043, 1047, 1049, 1050, 1051, 1056, 1057, 1058, 1064, 1065, 1067, 1068, 1071, 1072, 1076, 1077, 1084, 1086, 1087, 1094, 1100, 1101, 1103, 1104, 1106, 1119, 1123, 1124, 1128, 1131, 1135, 1137 ] }
movie_3
Among all the films starring PENELOPE GUINESS, what is the title of the one with the highest rental price per day?
highest rental price per day refers to Max(Divide(rental_rate, rental_duration))
SELECT T3.title FROM actor AS T1 INNER JOIN film_actor AS T2 ON T1.actor_id = T2.actor_id INNER JOIN film AS T3 ON T2.film_id = T3.film_id WHERE T1.first_name = 'PENELOPE' AND T1.last_name = 'GUINESS' ORDER BY T3.rental_rate / T3.rental_duration DESC LIMIT 1
CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,138
9,138
CREATE TABLE `actor` ( CREATE TABLE "actor" actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null ) CREATE TABLE `film` ( CREATE TABLE "film" film_id INTEGER primary key autoincrement, title TEXT not null, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null ) CREATE TABLE `film_actor` ( CREATE TABLE "film_actor" actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, primary key actor_id, film_id )
[ "AS", "AND", "SELECT", "ORDER BY", "LIMIT", "INNER JOIN", "ON", "DESC", "FROM" ]
13
medium
{ "case_1": [ 317, 626 ], "case_2": [ 265, 317, 626 ], "case_3": [ 176, 218, 220, 254, 265, 317, 325, 369, 404, 483, 537, 584, 596, 626, 658, 726, 814, 862, 900, 1039 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 33, 34, 36, 37, 38, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 80, 81, 82, 83, 84, 85, 86, 88, 89, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 108, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 173, 174, 175, 176, 177, 179, 180, 181, 183, 184, 185, 186, 187, 188, 189, 190, 191, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 208, 211, 212, 213, 214, 217, 218, 219, 220, 221, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 252, 254, 256, 257, 258, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 285, 286, 287, 289, 290, 291, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 352, 353, 354, 356, 357, 358, 359, 360, 361, 363, 364, 365, 368, 369, 370, 371, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 448, 449, 450, 451, 452, 454, 455, 456, 457, 459, 460, 462, 463, 464, 465, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 505, 507, 509, 511, 514, 515, 516, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 544, 547, 548, 550, 552, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 619, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 662, 663, 664, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 708, 710, 711, 712, 714, 715, 717, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 732, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 796, 797, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 815, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 836, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 869, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 934, 935, 936, 937, 938, 940, 943, 944, 946, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 972, 973, 974, 975, 977, 980, 981, 983, 985, 986, 987, 988, 991, 993, 994, 996, 997, 999, 1000, 1001, 1003, 1004, 1005, 1006, 1010, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1030, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1057, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1071, 1072, 1074, 1076, 1077, 1078, 1080, 1082, 1083, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1139, 1141 ] }
movie_3
What is the average replacement cost of the films under the category of "Horror"?
"Horror" is the name of category; average replacement cost = Divide (Sum(replacement_cost), Count(film_id where name = Horror))
SELECT AVG(T3.replacement_cost) FROM film_category AS T1 INNER JOIN category AS T2 ON T1.category_id = T2.category_id INNER JOIN film AS T3 ON T1.film_id = T3.film_id WHERE T2.name = 'Horror'
CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,139
9,139
CREATE TABLE `category` ( CREATE TABLE "category" category_id INTEGER primary key autoincrement, name TEXT not null ) CREATE TABLE `film` ( CREATE TABLE "film" film_id INTEGER primary key autoincrement, replacement_cost REAL default 19.99 not null ) CREATE TABLE `film_category` ( CREATE TABLE "film_category" film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, primary key film_id, category_id )
[ "AS", "SELECT", "INNER JOIN", "ON", "AVG", "FROM" ]
10
simple
{ "case_1": [ 658 ], "case_2": [ 176, 658 ], "case_3": [ 176, 218, 220, 254, 265, 317, 325, 369, 483, 537, 584, 596, 626, 658, 726, 814, 862, 900, 1039 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 88, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 368, 369, 370, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 447, 448, 449, 450, 451, 452, 454, 455, 456, 457, 459, 460, 462, 463, 464, 465, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 505, 507, 509, 511, 514, 515, 516, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 544, 547, 548, 550, 552, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 786, 787, 788, 790, 792, 793, 796, 797, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 999, 1000, 1001, 1003, 1005, 1006, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1071, 1072, 1074, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
movie_3
Among all films that the customer RUTH MARTINEZ has rented, what is the percentage of it being a Music film?
music film refers to name = 'Music'; percentage = Divide (Count(film_id where name = 'Music'), Count(film_id)) * 100
SELECT CAST(SUM(IIF(T3.name = 'Music', 1, 0)) AS REAL) * 100 / COUNT(T1.film_id) FROM film AS T1 INNER JOIN film_category AS T2 ON T1.film_id = T2.film_id INNER JOIN category AS T3 ON T2.category_id = T3.category_id INNER JOIN inventory AS T4 ON T1.film_id = T4.film_id INNER JOIN customer AS T5 ON T4.store_id = T5.store_id INNER JOIN rental AS T6 ON T4.inventory_id = T6.inventory_id WHERE T5.first_name = 'RUTH' AND T5.last_name = 'MARTINEZ'
CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,140
9,140
CREATE TABLE `category` ( CREATE TABLE "category" category_id INTEGER primary key autoincrement, name TEXT not null ) CREATE TABLE `customer` ( store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null ) CREATE TABLE `film` ( CREATE TABLE "film" film_id INTEGER primary key autoincrement ) CREATE TABLE `film_category` ( CREATE TABLE "film_category" film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, primary key film_id, category_id ) CREATE TABLE `inventory` ( CREATE TABLE "inventory" inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade ) CREATE TABLE `rental` ( inventory_id INTEGER not null references inventory on update cascade, inventory_id )
[ "AS", "AND", "SELECT", "SUM", "INNER JOIN", "ON", "CAST", "COUNT", "FROM" ]
23
challenging
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ 176, 218, 220, 254, 265, 317, 325, 369, 483, 537, 584, 596, 626, 658, 726, 814, 862, 900, 1039 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 35, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 61, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 87, 88, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 215, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 271, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 367, 368, 369, 370, 373, 374, 375, 376, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 462, 463, 464, 465, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 504, 505, 507, 509, 510, 511, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 526, 527, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 544, 547, 548, 550, 552, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 661, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 795, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 998, 999, 1000, 1001, 1003, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1074, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
movie_3
What is the average duration time of the films starring PENELOPE GUINESS?
average duration time = AVG(length)
SELECT AVG(T3.length) FROM actor AS T1 INNER JOIN film_actor AS T2 ON T1.actor_id = T2.actor_id INNER JOIN film AS T3 ON T2.film_id = T3.film_id WHERE T1.first_name = 'PENELOPE' AND T1.last_name = 'GUINESS'
CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,141
9,141
CREATE TABLE `actor` ( CREATE TABLE "actor" actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null ) CREATE TABLE `film` ( CREATE TABLE "film" film_id INTEGER primary key autoincrement, length INTEGER ) CREATE TABLE `film_actor` ( CREATE TABLE "film_actor" actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, primary key actor_id, film_id )
[ "AS", "AND", "SELECT", "INNER JOIN", "ON", "AVG", "length", "FROM" ]
12
medium
{ "case_1": [ 317, 626 ], "case_2": [ 265, 317, 626 ], "case_3": [ 176, 218, 220, 254, 265, 317, 325, 369, 483, 537, 584, 596, 626, 658, 726, 814, 862, 900, 1039 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 88, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 368, 369, 370, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 448, 449, 450, 451, 452, 454, 455, 456, 457, 459, 460, 462, 463, 464, 465, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 505, 507, 509, 511, 514, 515, 516, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 544, 547, 548, 550, 552, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 796, 797, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 999, 1000, 1001, 1003, 1005, 1006, 1010, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1071, 1072, 1074, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
movie_3
What is Diane Collins' email address?
SELECT email FROM customer WHERE first_name = 'DIANE' AND last_name = 'COLLINS'
CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,142
9,142
CREATE TABLE `customer` ( first_name TEXT not null, last_name TEXT not null, email TEXT )
[ "AND", "SELECT", "FROM" ]
3
simple
{ "case_1": [ 147, 673 ], "case_2": [ 147, 673 ], "case_3": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141 ] }
movie_3
Give the number of inactive customers.
inactive refers to active = 0
SELECT COUNT(customer_id) FROM customer WHERE active = 0
CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,143
9,143
CREATE TABLE `customer` ( CREATE TABLE "customer" customer_id INTEGER primary key autoincrement, active INTEGER default 1 not null )
[ "COUNT", "SELECT", "FROM" ]
3
simple
{ "case_1": [ 147, 673 ], "case_2": [ 147, 673 ], "case_3": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141 ] }
movie_3
Who is the owner of email address "[email protected]"? Give the full name.
"[email protected]" is the email; owner refers to customer; full name refers to first_name, last_name
SELECT first_name, last_name FROM customer WHERE email = '[email protected]'
CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,144
9,144
CREATE TABLE `customer` ( first_name TEXT not null, last_name TEXT not null, email TEXT )
[ "SELECT", "FROM" ]
2
simple
{ "case_1": [ 147, 673 ], "case_2": [ 147, 673 ], "case_3": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141 ] }
movie_3
Give the postal code for the address No.65.
address no. 65 refers to address_id = 65
SELECT postal_code FROM address WHERE address_id = 65
CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,145
9,145
CREATE TABLE `address` ( CREATE TABLE "address" address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, postal_code TEXT )
[ "SELECT", "FROM" ]
2
simple
{ "case_1": [ 770 ], "case_2": [ 770 ], "case_3": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141 ] }
movie_3
State the number of addresses in the Nordrhein-Westfalen district.
number of address refers to address_id
SELECT COUNT(address_id) FROM address WHERE district = 'Nordrhein-Westfalen'
CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,146
9,146
CREATE TABLE `address` ( CREATE TABLE "address" address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null )
[ "COUNT", "-", "SELECT", "FROM" ]
4
simple
{ "case_1": [ 770 ], "case_2": [ 770 ], "case_3": [ 147, 254, 273, 317, 325, 396, 537, 596, 658, 673, 770, 811, 814 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 3, 4, 6, 9, 11, 13, 15, 16, 21, 22, 25, 27, 28, 30, 32, 34, 35, 36, 37, 39, 40, 42, 43, 45, 47, 51, 53, 55, 61, 62, 63, 67, 68, 69, 73, 74, 75, 77, 78, 79, 82, 85, 86, 87, 88, 89, 91, 93, 96, 97, 98, 105, 106, 108, 109, 112, 113, 115, 117, 118, 119, 121, 124, 125, 126, 128, 131, 135, 140, 141, 142, 143, 146, 147, 148, 152, 154, 157, 158, 159, 160, 164, 167, 169, 170, 172, 173, 175, 179, 180, 182, 183, 184, 185, 187, 188, 189, 190, 191, 192, 196, 197, 198, 199, 202, 203, 206, 210, 212, 214, 216, 224, 225, 226, 227, 228, 229, 230, 233, 234, 240, 243, 244, 247, 252, 253, 254, 256, 259, 261, 267, 268, 269, 271, 272, 273, 276, 277, 286, 291, 293, 294, 296, 299, 300, 301, 303, 311, 314, 316, 317, 319, 320, 323, 325, 330, 334, 335, 336, 338, 339, 341, 344, 345, 348, 349, 352, 354, 356, 358, 359, 360, 362, 364, 368, 370, 371, 373, 374, 375, 380, 382, 383, 384, 391, 392, 393, 394, 396, 399, 401, 403, 406, 409, 410, 411, 412, 416, 417, 420, 421, 423, 424, 425, 426, 436, 443, 444, 445, 446, 447, 448, 453, 454, 458, 460, 462, 464, 465, 466, 467, 469, 471, 473, 476, 477, 478, 481, 484, 485, 487, 488, 489, 490, 493, 496, 498, 500, 503, 504, 505, 507, 509, 510, 512, 514, 515, 516, 517, 519, 520, 522, 526, 529, 531, 532, 535, 536, 537, 538, 542, 543, 544, 545, 547, 548, 550, 552, 554, 558, 559, 560, 562, 563, 564, 566, 573, 580, 581, 582, 585, 591, 594, 595, 596, 597, 598, 601, 603, 606, 608, 611, 613, 617, 618, 620, 624, 627, 629, 630, 632, 633, 634, 641, 643, 645, 646, 647, 649, 654, 656, 658, 659, 660, 661, 662, 663, 664, 665, 667, 668, 669, 671, 673, 675, 677, 679, 680, 681, 684, 687, 688, 689, 692, 693, 694, 695, 696, 698, 703, 705, 707, 709, 712, 714, 718, 719, 721, 727, 729, 730, 733, 734, 735, 736, 737, 739, 740, 743, 746, 748, 749, 750, 752, 753, 754, 756, 757, 758, 760, 762, 768, 769, 770, 772, 777, 778, 779, 785, 787, 788, 790, 795, 796, 797, 798, 799, 800, 802, 804, 805, 811, 812, 813, 814, 817, 818, 819, 820, 821, 824, 826, 827, 829, 830, 831, 835, 838, 839, 841, 843, 849, 851, 853, 857, 858, 864, 865, 866, 867, 869, 870, 874, 876, 877, 878, 882, 886, 888, 890, 893, 894, 896, 897, 898, 899, 901, 902, 903, 905, 909, 911, 912, 913, 915, 917, 918, 922, 923, 924, 925, 926, 927, 930, 934, 935, 941, 942, 943, 945, 950, 951, 954, 955, 956, 958, 959, 960, 961, 963, 965, 968, 969, 972, 974, 975, 976, 977, 979, 980, 981, 983, 985, 986, 993, 996, 1005, 1006, 1008, 1010, 1011, 1013, 1014, 1015, 1020, 1022, 1023, 1030, 1031, 1037, 1042, 1043, 1047, 1050, 1051, 1052, 1053, 1055, 1057, 1058, 1059, 1062, 1064, 1067, 1068, 1069, 1070, 1071, 1072, 1074, 1076, 1077, 1078, 1079, 1082, 1084, 1086, 1087, 1090, 1092, 1093, 1094, 1096, 1100, 1101, 1103, 1104, 1106, 1111, 1112, 1113, 1119, 1121, 1123, 1124, 1126, 1127, 1128, 1131, 1132, 1133, 1134, 1135, 1137 ] }
movie_3
What is the phone number of address No.72?
address no. 72 refers to address_id = 72; phone number refers to phone
SELECT phone FROM address WHERE address_id = '72'
CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,147
9,147
CREATE TABLE `address` ( CREATE TABLE "address" address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, phone TEXT not null )
[ "SELECT", "FROM" ]
2
simple
{ "case_1": [ 770 ], "case_2": [ 770 ], "case_3": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141 ] }
movie_3
State the number of films that are 178 minutes long.
178 min long refers to length = '178'
SELECT COUNT(film_id) FROM film WHERE length = '178'
CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,148
9,148
CREATE TABLE `film` ( CREATE TABLE "film" film_id INTEGER primary key autoincrement )
[ "COUNT", "length", "SELECT", "FROM" ]
4
simple
{ "case_1": [ 855 ], "case_2": [ 855 ], "case_3": [ 147, 176, 254, 273, 317, 325, 404, 537, 596, 658, 673, 726, 770, 811, 814, 855 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 4, 6, 9, 11, 13, 15, 16, 22, 25, 27, 28, 30, 32, 35, 36, 37, 40, 47, 51, 53, 55, 61, 62, 63, 67, 68, 69, 73, 74, 75, 77, 78, 82, 86, 87, 88, 89, 91, 93, 94, 96, 98, 106, 108, 109, 113, 115, 117, 118, 119, 121, 124, 125, 126, 131, 140, 142, 143, 146, 147, 148, 152, 157, 159, 160, 164, 167, 169, 170, 173, 175, 176, 179, 182, 183, 184, 185, 187, 188, 189, 190, 191, 192, 196, 197, 198, 199, 202, 203, 206, 210, 212, 214, 216, 224, 225, 226, 227, 229, 230, 233, 234, 243, 244, 247, 252, 254, 256, 259, 261, 267, 268, 269, 271, 273, 276, 277, 286, 291, 293, 294, 299, 301, 303, 311, 314, 316, 317, 319, 320, 323, 325, 330, 334, 335, 336, 338, 339, 341, 344, 345, 348, 349, 352, 354, 358, 359, 360, 364, 370, 371, 373, 374, 375, 380, 382, 383, 384, 391, 392, 394, 399, 401, 403, 404, 406, 409, 410, 411, 412, 416, 417, 420, 421, 423, 424, 426, 436, 443, 444, 445, 447, 448, 453, 454, 458, 460, 462, 464, 465, 466, 467, 469, 471, 473, 476, 477, 478, 481, 484, 485, 487, 488, 490, 493, 500, 504, 505, 509, 510, 512, 515, 516, 517, 519, 520, 526, 531, 532, 535, 536, 537, 538, 542, 543, 544, 545, 547, 548, 552, 554, 558, 559, 560, 563, 564, 566, 573, 580, 581, 582, 585, 591, 594, 595, 596, 597, 598, 603, 606, 608, 611, 613, 618, 620, 627, 629, 630, 632, 633, 634, 641, 645, 646, 649, 654, 656, 658, 659, 661, 662, 663, 664, 665, 667, 668, 669, 671, 673, 680, 681, 687, 688, 689, 692, 694, 696, 698, 703, 705, 707, 712, 714, 718, 719, 721, 726, 727, 730, 733, 734, 735, 736, 737, 739, 740, 743, 748, 749, 750, 752, 753, 756, 757, 760, 762, 768, 769, 770, 772, 778, 779, 787, 790, 795, 796, 797, 798, 799, 800, 802, 804, 811, 812, 813, 814, 817, 818, 819, 820, 821, 824, 827, 830, 831, 838, 839, 841, 843, 849, 851, 853, 855, 857, 865, 866, 867, 869, 870, 874, 876, 877, 886, 888, 890, 893, 894, 896, 897, 898, 899, 901, 902, 903, 909, 911, 912, 913, 915, 917, 918, 922, 923, 924, 926, 927, 930, 934, 935, 941, 942, 943, 945, 950, 951, 954, 956, 958, 960, 961, 963, 965, 968, 969, 972, 975, 976, 977, 981, 983, 985, 986, 993, 996, 1005, 1006, 1008, 1010, 1011, 1013, 1014, 1015, 1020, 1022, 1023, 1030, 1037, 1042, 1043, 1047, 1050, 1051, 1053, 1055, 1057, 1058, 1059, 1062, 1064, 1067, 1069, 1070, 1071, 1072, 1076, 1077, 1078, 1079, 1082, 1084, 1086, 1087, 1090, 1094, 1096, 1100, 1101, 1103, 1104, 1106, 1112, 1113, 1119, 1121, 1123, 1124, 1126, 1127, 1128, 1131, 1133, 1134, 1135, 1137 ] }
movie_3
Tell the special features of the film Uprising Uptown.
"UPRISING UPTOWN" is the title of film
SELECT special_features FROM film WHERE title = 'UPRISING UPTOWN'
CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,149
9,149
CREATE TABLE `film` ( title TEXT not null, special_features TEXT )
[ "SELECT", "FROM" ]
2
simple
{ "case_1": [ 396, 855, 884 ], "case_2": [ 396, 855, 884 ], "case_3": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141 ] }
movie_3
What is the description of the film Artist Coldblooded?
"ARTIST COLDBLOODED" is the title of film
SELECT description FROM film WHERE title = 'ARTIST COLDBLOODED'
CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,150
9,150
CREATE TABLE `film` ( title TEXT not null, description TEXT )
[ "SELECT", "FROM" ]
2
simple
{ "case_1": [ 396, 855, 884 ], "case_2": [ 396, 855, 884 ], "case_3": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141 ] }
movie_3
Give the detailed address for store No.2.
store no. 22 refers to store_id = 2; detailed address refers to address, address2, district
SELECT T1.address, T1.address2, T1.district FROM address AS T1 INNER JOIN store AS T2 ON T1.address_id = T2.address_id WHERE T2.store_id = 2
CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,151
9,151
CREATE TABLE `address` ( CREATE TABLE "address" address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null ) CREATE TABLE `store` ( CREATE TABLE "store" store_id INTEGER primary key autoincrement, address_id INTEGER not null references address on update cascade )
[ "AS", "SELECT", "INNER JOIN", "ON", "FROM" ]
6
simple
{ "case_1": [ 900 ], "case_2": [ 900 ], "case_3": [ 176, 218, 220, 254, 265, 317, 325, 369, 483, 537, 584, 596, 626, 658, 726, 814, 862, 900, 1039 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 35, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 61, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 101, 102, 104, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 215, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 271, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 286, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 367, 368, 369, 370, 373, 374, 375, 376, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 462, 463, 464, 465, 466, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 504, 505, 506, 507, 508, 509, 510, 511, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 526, 527, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 542, 544, 547, 548, 550, 552, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 601, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 657, 658, 659, 660, 661, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 786, 787, 788, 790, 792, 793, 795, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 978, 980, 981, 982, 985, 986, 988, 991, 993, 994, 996, 997, 998, 999, 1000, 1001, 1003, 1004, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1074, 1075, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1113, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
movie_3
Which continent is the mother country of Clarksville city in?
"Clarksville" is the city;
SELECT T1.country FROM country AS T1 INNER JOIN city AS T2 ON T1.country_id = T2.country_id WHERE T2.city = 'Clarksville'
CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,152
9,152
CREATE TABLE `city` ( CREATE TABLE "city" city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade ) CREATE TABLE `country` ( CREATE TABLE "country" country_id INTEGER primary key autoincrement, country TEXT not null )
[ "AS", "SELECT", "INNER JOIN", "ON", "FROM" ]
6
simple
{ "case_1": [ 483, 596 ], "case_2": [ 483, 596 ], "case_3": [ 176, 218, 220, 254, 265, 317, 325, 369, 483, 537, 584, 596, 626, 658, 726, 814, 862, 900, 1039 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 35, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 61, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 101, 102, 104, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 178, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 215, 217, 218, 219, 220, 221, 223, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 271, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 286, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 367, 368, 369, 370, 373, 374, 375, 376, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 462, 463, 464, 465, 466, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 504, 505, 506, 507, 508, 509, 510, 511, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 526, 527, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 542, 544, 547, 548, 550, 552, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 601, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 657, 658, 659, 660, 661, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 786, 787, 788, 790, 792, 793, 795, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 978, 980, 981, 982, 985, 986, 988, 991, 993, 994, 996, 997, 998, 999, 1000, 1001, 1003, 1004, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1074, 1075, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1113, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
movie_3
How many actors played a role in the 2006 film whose rental duration is 7 days, rental rate is 4.99 and is 98 minutes duration?
in 2006 refers to release_year = 2006; 98 min duration refers to length = 98; number of actors refers to count(actor_id)
SELECT COUNT(T1.actor_id) FROM film_actor AS T1 INNER JOIN film AS T2 ON T1.film_id = T2.film_id WHERE T2.release_year = 2006 AND T2.rental_duration = 7 AND T2.rental_duration = 4.99 AND T2.length = 98
CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) )
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT null ) CREATE TABLE "actor" ( actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE sqlite_sequence(name,seq) CREATE TABLE "address" ( address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null, city_id INTEGER not null references city on update cascade, postal_code TEXT, phone TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "city" ( city_id INTEGER primary key autoincrement, city TEXT not null, country_id INTEGER not null references country on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "country" ( country_id INTEGER primary key autoincrement, country TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "customer" ( customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, email TEXT, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null, create_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film" ( film_id INTEGER primary key autoincrement, title TEXT not null, description TEXT, release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null, length INTEGER, replacement_cost REAL default 19.99 not null, rating TEXT default 'G', special_features TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "film_actor" ( actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (actor_id, film_id) ) CREATE TABLE "film_category" ( film_id INTEGER not null references film on update cascade, category_id INTEGER not null references category on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, primary key (film_id, category_id) ) CREATE TABLE "inventory" ( inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "language" ( language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "payment" ( payment_id INTEGER primary key autoincrement, customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null, payment_date DATETIME not null, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "rental" ( rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, customer_id INTEGER not null references customer on update cascade, return_date DATETIME, staff_id INTEGER not null references staff on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null, unique (rental_date, inventory_id, customer_id) ) CREATE TABLE "staff" ( staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, picture BLOB, email TEXT, store_id INTEGER not null references store on update cascade, active INTEGER default 1 not null, username TEXT not null, password TEXT, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE "store" ( store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade, address_id INTEGER not null references address on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null )
na
9,153
9,153
CREATE TABLE `film` ( CREATE TABLE "film" film_id INTEGER primary key autoincrement, release_year TEXT, rental_duration INTEGER default 3 not null, length INTEGER ) CREATE TABLE `film_actor` ( CREATE TABLE "film_actor" actor_id INTEGER not null references actor on update cascade, film_id INTEGER not null references film on update cascade, primary key actor_id, film_id )
[ "AS", "AND", "SELECT", "INNER JOIN", "ON", "length", "COUNT", "FROM" ]
11
medium
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ 176, 218, 220, 254, 265, 317, 325, 369, 483, 537, 584, 596, 626, 658, 726, 814, 862, 900, 1039 ], "case_4": [ 147, 176, 218, 220, 254, 265, 273, 317, 325, 350, 369, 396, 404, 483, 537, 546, 584, 596, 626, 658, 673, 726, 770, 789, 811, 814, 855, 862, 884, 900, 1039, 1088 ], "case_5": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 33, 34, 36, 37, 39, 41, 42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 58, 59, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 81, 82, 83, 84, 85, 86, 88, 90, 91, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 148, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 175, 176, 177, 179, 180, 183, 184, 186, 187, 188, 189, 190, 191, 194, 195, 196, 197, 199, 200, 201, 202, 206, 207, 211, 212, 213, 214, 217, 218, 219, 220, 221, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 239, 240, 241, 242, 243, 244, 246, 247, 248, 250, 254, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 272, 275, 276, 277, 278, 279, 280, 281, 282, 284, 287, 289, 290, 292, 295, 296, 297, 298, 299, 300, 301, 302, 304, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 330, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 353, 354, 356, 357, 358, 360, 361, 363, 364, 365, 368, 369, 370, 373, 374, 375, 376, 378, 379, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 398, 401, 402, 403, 405, 406, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 419, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 447, 448, 449, 450, 451, 452, 454, 455, 456, 457, 459, 460, 462, 463, 464, 465, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 482, 483, 484, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 505, 507, 509, 510, 511, 514, 515, 516, 518, 519, 520, 521, 522, 523, 524, 526, 528, 529, 530, 532, 533, 535, 536, 537, 538, 539, 540, 541, 544, 547, 548, 550, 552, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 581, 582, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 600, 602, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 657, 658, 659, 660, 662, 663, 665, 666, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 691, 693, 694, 695, 696, 697, 699, 700, 701, 702, 704, 705, 706, 710, 711, 712, 714, 715, 717, 720, 721, 722, 723, 724, 725, 726, 727, 728, 733, 734, 735, 736, 739, 740, 741, 742, 743, 744, 745, 746, 747, 749, 750, 751, 752, 753, 754, 755, 756, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 782, 783, 784, 786, 787, 788, 790, 792, 793, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 818, 819, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837, 838, 839, 841, 844, 845, 846, 848, 849, 850, 851, 852, 853, 854, 857, 858, 859, 860, 861, 862, 863, 866, 867, 868, 870, 871, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 885, 886, 887, 888, 889, 891, 892, 893, 894, 895, 896, 897, 898, 900, 901, 902, 904, 905, 907, 908, 909, 910, 911, 912, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 943, 944, 949, 950, 951, 952, 953, 954, 956, 958, 959, 961, 962, 963, 964, 966, 967, 969, 970, 971, 973, 974, 975, 977, 980, 981, 985, 986, 988, 991, 993, 994, 996, 997, 999, 1000, 1001, 1003, 1005, 1006, 1008, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1025, 1027, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1049, 1050, 1051, 1052, 1056, 1058, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1071, 1072, 1074, 1078, 1080, 1082, 1084, 1085, 1086, 1087, 1089, 1091, 1092, 1094, 1095, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1109, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1121, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }