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
movie_3
Give the total amount of rent for the movie Clockwork Paradice.
'Clockwork Paradice' is a title of a film
SELECT SUM(T1.amount) FROM payment AS T1 INNER JOIN rental AS T2 ON T1.rental_id = T2.rental_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.title = 'CLOCKWORK PARADICE'
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 "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 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,254
9,254
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 `payment` ( rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null ) CREATE TABLE `rental` ( CREATE TABLE "rental" rental_id INTEGER primary key autoincrement, inventory_id INTEGER not null references inventory on update cascade, inventory_id )
[ "AS", "SELECT", "SUM", "INNER JOIN", "ON", "FROM" ]
13
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, 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 ] }
movie_3
Find and list the full name of customers who rented more than five types of movies.
full name refers to first_name, last_name; types of movies means category of movies; rented more than five types of movies refers to COUNT(film_category) > 5
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 INNER JOIN inventory AS T3 ON T2.inventory_id = T3.inventory_id INNER JOIN film AS T4 ON T3.film_id = T4.film_id INNER JOIN film_category AS T5 ON T4.film_id = T5.film_id GROUP BY T1.first_name, T1.last_name ) AS T WHERE T.num > 5
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,255
9,255
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 ) CREATE TABLE `film_category` ( CREATE TABLE "film_category" film_id INTEGER not null references film on update cascade, primary key film_id ) 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 )
[ "GROUP BY", "AS", "SELECT", "INNER JOIN", "ON", "COUNT", "FROM" ]
21
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, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 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, 78, 80, 81, 82, 83, 84, 85, 86, 87, 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, 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, 178, 179, 180, 182, 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, 252, 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, 348, 349, 352, 353, 354, 356, 357, 358, 359, 360, 361, 363, 364, 365, 368, 369, 370, 371, 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, 481, 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, 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, 710, 711, 712, 714, 715, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 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, 795, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 810, 812, 813, 814, 817, 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, 869, 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, 972, 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, 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, 1069, 1070, 1071, 1072, 1074, 1076, 1077, 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
What is the average number of actors acted in comedy movies?
comedy is the name of a category; average number of actors refers to AVG(actor_id)
SELECT AVG(T1.actor_id) FROM film_actor 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 actor AS T4 ON T4.actor_id = T1.actor_id WHERE T3.name = 'comedy'
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 "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, 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 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,256
9,256
CREATE TABLE `actor` ( CREATE TABLE "actor" actor_id INTEGER primary key autoincrement ) CREATE TABLE `category` ( CREATE TABLE "category" category_id INTEGER primary key autoincrement, name 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 ) 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" ]
13
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, 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
In children's movies, which was rented the most?
children is the name of the category; rented the most refers to MAX(COUNT(title))
SELECT T.title FROM ( SELECT T4.title, COUNT(T4.title) AS num 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 INNER JOIN film_category AS T5 ON T4.film_id = T5.film_id INNER JOIN category AS T6 ON T5.category_id = T6.category_id WHERE T6.name = 'Children' GROUP BY T4.title ) AS T ORDER BY T.num DESC LIMIT 1
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,257
9,257
CREATE TABLE `category` ( CREATE TABLE "category" category_id INTEGER primary key autoincrement, name TEXT not null ) CREATE TABLE `customer` ( CREATE TABLE "customer" customer_id INTEGER primary key autoincrement ) 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 ) 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 )
[ "GROUP BY", "AS", "SELECT", "ORDER BY", "LIMIT", "INNER JOIN", "ON", "DESC", "COUNT", "FROM" ]
27
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
Calculate the percentage of customers who paid more than the average rent amount in store 1.
store 1 refers to store_id = 1; average rent amount refers to AVG(amount); calculation = DIVIDE(amount > AVG(amount), COUNT(customer_id)) * 100
SELECT CAST(( SELECT COUNT(T1.customer_id) FROM customer AS T1 INNER JOIN payment AS T2 ON T1.customer_id = T2.customer_id WHERE T2.amount > ( SELECT AVG(amount) FROM payment ) ) AS REAL) * 100 / ( SELECT COUNT(customer_id) FROM customer )
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 "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 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,258
9,258
CREATE TABLE `customer` ( CREATE TABLE "customer" customer_id INTEGER primary key autoincrement ) CREATE TABLE `payment` ( customer_id INTEGER not null references customer on update cascade, amount REAL not null )
[ "AS", "SELECT", "INNER JOIN", "ON", "AVG", "CAST", "COUNT", "FROM" ]
16
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, 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, 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, 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, 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, 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, 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
Find and list the full name of customers who rented more family movies than Sci-Fi movies.
full name refers to first_name, last_name; 'family' AND 'Sci-Fi' are names of the category; customers who rented more family movies than Sci-Fi movies refers to count(name = 'Family') > count(name = 'Sci-Fi')
SELECT DISTINCT IIF(SUM(IIF(T5.name = 'Family', 1, 0)) - SUM(IIF(T5.name = 'Sci-Fi', 1, 0)) > 0, T1.first_name, 0) 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_category AS T4 ON T4.film_id = T3.film_id INNER JOIN category AS T5 ON T4.category_id = T5.category_id GROUP BY T1.customer_id
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_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,259
9,259
CREATE TABLE `category` ( CREATE TABLE "category" category_id INTEGER primary key autoincrement, name TEXT not null ) CREATE TABLE `customer` ( CREATE TABLE "customer" customer_id INTEGER primary key autoincrement, first_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 ) 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 )
[ "GROUP BY", "AS", "SELECT", "SUM", "-", "INNER JOIN", "ON", "FROM" ]
19
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, 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, 173, 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, 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, 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, 914, 915, 916, 917, 918, 922, 923, 924, 925, 926, 927, 928, 929, 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, 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, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
movie_3
Indicate the title of all the films rated as 'Adults Only'.
'Adults Only' refers to rating = 'NC-17'
SELECT title FROM film WHERE rating = 'NC-17'
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,260
9,260
CREATE TABLE `film` ( title TEXT not null, rating TEXT default 'G' )
[ "-", "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
How many actors with the surname Kilmer are there?
surname means last_name;
SELECT COUNT(actor_id) FROM actor WHERE last_name = 'Kilmer'
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_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,261
9,261
CREATE TABLE `actor` ( CREATE TABLE "actor" actor_id INTEGER primary key autoincrement, last_name TEXT not null )
[ "COUNT", "SELECT", "FROM" ]
3
simple
{ "case_1": [ 273, 1088 ], "case_2": [ 273, 1088 ], "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 movies have a length longer than 100?
length longer than 100 refers to length > 100
SELECT COUNT(film_id) FROM film WHERE length > 100
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,262
9,262
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
How many payments were made throughout the month of August 2005?
payments made refers to amount; throughout the month of August 2005 refers to payment_date like '2005-08%'
SELECT SUM(amount) FROM payment WHERE payment_date LIKE '2005-08%'
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 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,263
9,263
CREATE TABLE `payment` ( amount REAL not null, payment_date DATETIME not null )
[ "SELECT", "SUM", "LIKE", "-", "FROM" ]
5
simple
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ 254, 317, 325, 350, 396, 483, 537, 546, 658, 770 ], "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": [ 2, 3, 6, 20, 21, 24, 26, 32, 34, 35, 38, 39, 42, 43, 45, 54, 57, 59, 61, 64, 71, 74, 77, 79, 81, 82, 83, 85, 87, 90, 93, 94, 97, 98, 104, 105, 112, 113, 114, 115, 120, 122, 126, 127, 128, 129, 131, 135, 136, 141, 146, 148, 153, 154, 155, 158, 168, 169, 172, 173, 179, 180, 183, 184, 186, 187, 189, 191, 192, 195, 197, 199, 201, 202, 204, 205, 207, 212, 213, 215, 219, 223, 225, 226, 228, 234, 236, 240, 244, 245, 247, 248, 253, 254, 258, 259, 261, 263, 264, 271, 272, 277, 279, 285, 296, 300, 304, 313, 315, 316, 317, 323, 325, 335, 339, 341, 347, 348, 350, 356, 360, 362, 363, 365, 368, 373, 377, 378, 379, 381, 382, 383, 391, 392, 393, 394, 396, 397, 402, 403, 407, 409, 412, 415, 416, 421, 425, 427, 430, 433, 436, 438, 444, 445, 446, 448, 450, 452, 453, 470, 476, 483, 486, 487, 488, 489, 496, 498, 500, 503, 504, 506, 507, 509, 510, 514, 517, 518, 520, 522, 525, 527, 529, 532, 535, 537, 540, 544, 546, 547, 550, 557, 559, 562, 563, 564, 571, 575, 579, 580, 581, 591, 597, 598, 601, 609, 612, 617, 623, 624, 628, 629, 630, 638, 640, 643, 647, 649, 650, 658, 660, 662, 666, 667, 675, 676, 677, 679, 681, 682, 684, 686, 690, 693, 695, 701, 709, 710, 717, 723, 729, 737, 738, 740, 743, 744, 745, 746, 747, 749, 750, 753, 754, 756, 758, 762, 770, 774, 776, 777, 785, 787, 788, 795, 796, 798, 800, 802, 804, 805, 808, 810, 813, 817, 823, 825, 826, 827, 828, 829, 832, 835, 838, 841, 844, 848, 850, 858, 864, 865, 868, 870, 871, 872, 874, 875, 878, 879, 882, 894, 896, 905, 907, 909, 912, 913, 917, 918, 922, 924, 925, 929, 930, 939, 943, 944, 948, 954, 955, 958, 959, 962, 973, 974, 979, 980, 985, 987, 993, 998, 1000, 1008, 1012, 1018, 1019, 1022, 1023, 1027, 1031, 1038, 1042, 1052, 1054, 1057, 1064, 1068, 1069, 1070, 1074, 1078, 1082, 1087, 1092, 1093, 1096, 1098, 1100, 1101, 1110, 1111, 1117, 1121, 1123, 1128, 1132, 1135 ] }
movie_3
To which country does the address '1386 Nakhon Sawan Boulevard' belong?
SELECT T1.country FROM country AS T1 INNER JOIN city AS T2 ON T1.country_id = T2.country_id INNER JOIN address AS T3 ON T2.city_id = T3.city_id WHERE T3.address = '1386 Nakhon Sawan Boulevard'
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 "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,264
9,264
CREATE TABLE `address` ( CREATE TABLE "address" address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, city_id INTEGER not null references city on update cascade ) 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" ]
9
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
What language was the most used in movies released in 2006?
released in 2006 refers to release_year = 2006; the most used language refers to MAX(COUNT(language_id))
SELECT T.language_id FROM ( SELECT T1.language_id, COUNT(T1.language_id) AS num FROM film AS T1 INNER JOIN language AS T2 ON T1.language_id = T2.language_id WHERE STRFTIME('%Y',T1.release_year) = '2006' GROUP BY T1.language_id ) 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 "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,265
9,265
CREATE TABLE `film` ( release_year TEXT, 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 )
[ "GROUP BY", "AS", "SELECT", "ORDER BY", "LIMIT", "INNER JOIN", "ON", "DESC", "STRFTIME", "COUNT", "FROM" ]
16
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, 322, 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, 825, 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, 1001, 1004, 1005, 1006, 1010, 1013, 1015, 1017, 1022, 1023, 1025, 1030, 1034, 1037, 1038, 1042, 1043, 1044, 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
Indicate the title of all the films that are in the Classics category.
'classics' is the name of category
SELECT T2.title FROM film_category AS T1 INNER JOIN film AS T2 ON T1.film_id = T2.film_id INNER JOIN category AS T3 ON T1.category_id = T3.category_id WHERE T3.name = 'Classics'
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,266
9,266
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 rentals did Ella Oliver hire in June 2016?
'Ella Oliver' is a full name of a customer; full name refers to first_name, last_name; rental hired in June 2016 refers to rental_date BETWEEN '2005-06-01' AND '2005-06-30'
SELECT COUNT(T1.rental_id) FROM rental AS T1 INNER JOIN customer AS T2 ON T1.customer_id = T2.customer_id WHERE T2.first_name = 'ELLA' AND T2.last_name = 'ELLA' AND date(T1.rental_date) BETWEEN '2005-06-01' AND '2005-06-30'
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,267
9,267
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, rental_date DATETIME not null, customer_id INTEGER not null references customer on update cascade, unique rental_date, customer_id )
[ "AS", "AND", "SELECT", "-", "INNER JOIN", "ON", "COUNT", "BETWEEN", "FROM" ]
15
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, 10, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 32, 33, 34, 36, 37, 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, 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, 173, 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, 259, 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, 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, 399, 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, 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, 656, 657, 658, 659, 660, 662, 663, 665, 666, 667, 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, 817, 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, 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 ] }
movie_3
How many different clients have rented materials from Jon Stephens?
'Jon Stephens' is a full name of a customer; full name refers to first_name, last_name;
SELECT COUNT(T1.customer_id) FROM rental AS T1 INNER JOIN staff AS T2 ON T1.staff_id = T2.staff_id WHERE T2.first_name = 'Jon' AND T2.last_name = 'Stephens'
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 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,268
9,268
CREATE TABLE `rental` ( customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, customer_id ) CREATE TABLE `staff` ( CREATE TABLE "staff" staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null )
[ "AS", "AND", "SELECT", "INNER JOIN", "ON", "COUNT", "FROM" ]
8
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, 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 total amount paid for rentals made on July 29, 2005?
July 29, 2005 refers to rental_date like '2005-07-29'
SELECT SUM(T2.amount) FROM rental AS T1 INNER JOIN payment AS T2 ON T1.rental_id = T2.rental_id WHERE date(T1.rental_date) = '2005-07-29%'
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 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,269
9,269
CREATE TABLE `payment` ( rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null ) CREATE TABLE `rental` ( CREATE TABLE "rental" rental_id INTEGER primary key autoincrement, rental_date DATETIME not null, unique rental_date )
[ "AS", "SELECT", "SUM", "-", "INNER JOIN", "ON", "FROM" ]
9
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, 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, 173, 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, 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, 709, 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, 979, 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, 1093, 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 first name of the customers whose address is in the postal code that begins with 76?
postal code that begins with 76 refers to postal_code like '76%'
SELECT T1.first_name FROM customer AS T1 INNER JOIN address AS T2 ON T1.address_id = T2.address_id WHERE SUBSTR(T2.postal_code, 1, 2) = '76'
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 "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,270
9,270
CREATE TABLE `address` ( CREATE TABLE "address" address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, postal_code TEXT ) CREATE TABLE `customer` ( first_name TEXT not null, address_id INTEGER not null references address on update cascade )
[ "AS", "SELECT", "INNER JOIN", "ON", "SUBSTR", "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, 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, 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, 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, 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, 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, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
movie_3
On what date was the rented material for the movie BLOOD ARGONAUTS returned?
'BLOOD ARGONAUTS' is a title of a film; date a movie was returned refers to return_date
SELECT T1.rental_date FROM rental AS T1 INNER JOIN inventory AS T2 ON T1.inventory_id = T2.inventory_id INNER JOIN film AS T3 ON T2.film_id = T3.film_id WHERE T3.title = 'BLOOD ARGONAUTS'
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,271
9,271
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` ( rental_date DATETIME not null, inventory_id INTEGER not null references inventory on update cascade, unique rental_date, inventory_id )
[ "AS", "SELECT", "INNER JOIN", "ON", "FROM" ]
9
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
What is the title of the films in which Cuba Allen acted?
'Cuba Allen' is a full name of an actor; full name refers to first_name, last_name
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 = 'Cuba' AND T1.last_name = 'Allen'
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,272
9,272
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 acted in movies in the Music category?
Music' is a name of a category
SELECT COUNT(T1.actor_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 film_category AS T4 ON T3.film_id = T4.film_id INNER JOIN category AS T5 ON T4.category_id = T5.category_id WHERE T5.name = 'Music'
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 "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_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 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,273
9,273
CREATE TABLE `actor` ( CREATE TABLE "actor" actor_id INTEGER primary key autoincrement ) 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 ) 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 `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" ]
16
challenging
{ "case_1": [ -1 ], "case_2": [ 862 ], "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
What is the full name of the actor who has acted the most times in comedy films?
full name refers to first_name, last_name; 'comedy' is a name of a category;
SELECT T.first_name, T.last_name FROM ( SELECT T4.first_name, T4.last_name, COUNT(T2.actor_id) AS num FROM film_category AS T1 INNER JOIN film_actor AS T2 ON T1.film_id = T2.film_id INNER JOIN category AS T3 ON T1.category_id = T3.category_id INNER JOIN actor AS T4 ON T2.actor_id = T4.actor_id WHERE T3.name = 'Comedy' GROUP BY T4.first_name, T4.last_name ) AS T ORDER BY T.num 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 "category" ( category_id INTEGER primary key autoincrement, name TEXT not null, 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 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,274
9,274
CREATE TABLE `actor` ( CREATE TABLE "actor" actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null ) CREATE TABLE `category` ( CREATE TABLE "category" category_id INTEGER primary key autoincrement, name 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 ) 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 )
[ "GROUP BY", "AS", "SELECT", "ORDER BY", "LIMIT", "INNER JOIN", "ON", "DESC", "COUNT", "FROM" ]
21
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
How many customers did not rent material at Mike's store?
not at Mike's store refers to staff.first_name ! = 'Mike'
SELECT COUNT(T1.customer_id) FROM customer AS T1 INNER JOIN store AS T2 ON T1.store_id = T2.store_id INNER JOIN staff AS T3 ON T2.manager_staff_id = T3.staff_id WHERE T3.first_name != 'Mike'
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 "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 )
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,275
9,275
CREATE TABLE `customer` ( CREATE TABLE "customer" customer_id INTEGER primary key autoincrement, store_id INTEGER not null references store on update cascade, first_name TEXT not null ) CREATE TABLE `staff` ( CREATE TABLE "staff" staff_id INTEGER primary key autoincrement, first_name TEXT not null, store_id INTEGER not null references store on update cascade ) CREATE TABLE `store` ( CREATE TABLE "store" store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade )
[ "AS", "SELECT", "INNER JOIN", "ON", "COUNT", "FROM" ]
10
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
Indicate the name of the actors of the films rated as 'Parents Strongly Precautioned' with the highest replacement cost.
name refers to first_name, last_name; Parents Strongly Precautioned' refers to rating = 'PG-13'; highest replacement cost refers to MAX(replacement_cost)
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.rating = 'PG-13' 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,276
9,276
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, rating TEXT default 'G' ) 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" ]
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 name of the client who has the largest quantity of rented material without returning it?
name refers to first_name, last_name; without returning a rented material refers to return_date is null
SELECT T.first_name FROM ( SELECT T2.first_name, COUNT(T1.rental_date) AS num FROM rental AS T1 INNER JOIN customer AS T2 ON T1.customer_id = T2.customer_id GROUP BY T2.first_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,277
9,277
CREATE TABLE `customer` ( CREATE TABLE "customer" customer_id INTEGER primary key autoincrement, first_name TEXT not null ) CREATE TABLE `rental` ( rental_date DATETIME not null, customer_id INTEGER not null references customer on update cascade, unique rental_date, 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
How many customers live in the city of Miyakonojo?
SELECT COUNT(T3.customer_id) FROM city AS T1 INNER JOIN address AS T2 ON T1.city_id = T2.city_id INNER JOIN customer AS T3 ON T2.address_id = T3.address_id WHERE T1.city = 'Miyakonojo'
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 "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 "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,278
9,278
CREATE TABLE `address` ( CREATE TABLE "address" address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, city_id INTEGER not null references city on update cascade ) CREATE TABLE `city` ( CREATE TABLE "city" city_id INTEGER primary key autoincrement, city TEXT not null ) CREATE TABLE `customer` ( CREATE TABLE "customer" customer_id INTEGER primary key autoincrement, address_id INTEGER not null references address on update cascade )
[ "AS", "SELECT", "INNER JOIN", "ON", "COUNT", "FROM" ]
10
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
How many non-active clients have not returned the rented material?
non-active clients refers to active = 0; not returning a rented material refers to rental_date is null
SELECT COUNT(T2.customer_id) FROM rental AS T1 INNER JOIN customer AS T2 ON T1.customer_id = T2.customer_id WHERE T2.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 "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,279
9,279
CREATE TABLE `customer` ( CREATE TABLE "customer" customer_id INTEGER primary key autoincrement, active INTEGER default 1 not null ) CREATE TABLE `rental` ( customer_id INTEGER not null references customer on update cascade, customer_id )
[ "AS", "SELECT", "INNER JOIN", "ON", "COUNT", "FROM" ]
7
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, 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
What is the title of the animated films that have the shortest length?
animated film means animation; animation is a name of a 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 ORDER BY T1.length LIMIT 1
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,280
9,280
CREATE TABLE `category` ( CREATE TABLE "category" category_id INTEGER primary key autoincrement ) CREATE TABLE `film` ( CREATE TABLE "film" film_id INTEGER primary key autoincrement, title TEXT not null, length INTEGER ) 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", "ORDER BY", "LIMIT", "INNER JOIN", "ON", "length", "FROM" ]
12
medium
{ "case_1": [ 176 ], "case_2": [ 176, 658 ], "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, 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, 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, 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, 286, 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, 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, 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, 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, 929, 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, 1004, 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
In which country is the store where Hector Poinexter rents equipment located?
'Hector Poinexter' is a full name of a customer; full name refers to first_name, last_name;
SELECT T5.country FROM customer AS T1 INNER JOIN store AS T2 ON T1.store_id = T2.store_id INNER JOIN address AS T3 ON T2.address_id = T3.address_id INNER JOIN city AS T4 ON T3.city_id = T4.city_id INNER JOIN country AS T5 ON T4.country_id = T5.country_id WHERE T1.first_name = 'HECTOR' AND T1.last_name = 'POINDEXTER'
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 "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 "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,281
9,281
CREATE TABLE `address` ( CREATE TABLE "address" address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, city_id INTEGER not null references city on update cascade ) 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 ) CREATE TABLE `customer` ( store_id INTEGER not null references store on update cascade, first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade ) CREATE TABLE `store` ( CREATE TABLE "store" store_id INTEGER primary key autoincrement, address_id INTEGER not null references address on update cascade )
[ "AS", "AND", "SELECT", "INNER JOIN", "ON", "FROM" ]
16
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, 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
What is the average rental payment in Horror movies?
'Horror' is a name of a category; average rental payment refers to AVG(amount)
SELECT AVG(T5.amount) FROM category AS T1 INNER JOIN film_category AS T2 ON T1.category_id = T2.category_id INNER JOIN inventory AS T3 ON T2.film_id = T3.film_id INNER JOIN rental AS T4 ON T3.inventory_id = T4.inventory_id INNER JOIN payment AS T5 ON T4.rental_id = T5.rental_id WHERE T1.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 "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 "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 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,282
9,282
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 ) CREATE TABLE `inventory` ( CREATE TABLE "inventory" inventory_id INTEGER primary key autoincrement, film_id INTEGER not null references film on update cascade ) CREATE TABLE `payment` ( rental_id INTEGER references rental on update cascade on delete set null, amount REAL not null ) CREATE TABLE `rental` ( CREATE TABLE "rental" rental_id INTEGER primary key autoincrement, inventory_id INTEGER not null references inventory on update cascade, inventory_id )
[ "AS", "SELECT", "INNER JOIN", "ON", "AVG", "FROM" ]
16
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, 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
What is the average amount of rent that Christy Vargas paid?
'Christy Vargas' is a full name of a customer; full name refers to first_name, last_name; average amount of rent refers to AVG(amount)
SELECT AVG(T2.amount) FROM customer AS T1 INNER JOIN payment AS T2 ON T1.customer_id = T2.customer_id WHERE T1.first_name = 'CHRISTY' AND T1.Last_name = 'VARGAS'
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 "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 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,283
9,283
CREATE TABLE `customer` ( CREATE TABLE "customer" customer_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null ) CREATE TABLE `payment` ( customer_id INTEGER not null references customer on update cascade, amount REAL not null )
[ "AS", "AND", "SELECT", "INNER JOIN", "ON", "AVG", "FROM" ]
8
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, 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 percentage of films with a length of less than 100 belong to the Drama category?
Drama' is a name of a category; calculation = DIVIDE(SUM(length < 100 AND name = 'Drama'), COUNT(film_id)) * 100
SELECT CAST(SUM(IIF(T2.length < 100 AND T3.name = 'Drama', 1, 0)) AS REAL) * 100 / COUNT(T1.film_id) FROM film_category AS T1 INNER JOIN film AS T2 ON T1.film_id = T2.film_id INNER JOIN category AS T3 ON T1.category_id = T3.category_id
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,284
9,284
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, length INTEGER ) 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", "SUM", "INNER JOIN", "ON", "length", "CAST", "COUNT", "FROM" ]
15
medium
{ "case_1": [ 176 ], "case_2": [ 176, 658 ], "case_3": [ 176, 254, 265, 317, 325, 483, 537, 584, 596, 626, 658, 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": [ 0, 1, 4, 5, 6, 8, 11, 12, 16, 19, 20, 21, 22, 24, 26, 27, 30, 33, 35, 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, 87, 88, 90, 91, 93, 94, 95, 96, 98, 99, 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, 172, 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, 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, 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, 424, 425, 426, 427, 428, 433, 436, 437, 438, 440, 444, 445, 446, 448, 450, 451, 452, 453, 454, 455, 460, 462, 463, 464, 465, 467, 469, 470, 471, 473, 475, 476, 477, 478, 480, 482, 483, 484, 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, 637, 638, 640, 641, 643, 645, 646, 648, 649, 650, 651, 654, 658, 659, 662, 663, 665, 666, 668, 669, 671, 675, 676, 677, 678, 681, 682, 683, 684, 685, 686, 687, 688, 690, 693, 694, 695, 696, 697, 699, 701, 702, 705, 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, 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, 886, 888, 892, 893, 894, 895, 896, 897, 898, 901, 902, 905, 907, 909, 911, 912, 913, 915, 917, 918, 922, 923, 924, 926, 927, 928, 930, 931, 932, 934, 935, 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, 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 ] }
movie_3
What are the actors that have the same forename as Johnny? Please include in your answer the full names of these actors.
forename means first_name; full name refers to first_name, last_name
SELECT first_name, last_name FROM actor WHERE first_name = 'Johnny'
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_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,285
9,285
CREATE TABLE `actor` ( first_name TEXT not null, last_name TEXT not null )
[ "SELECT", "FROM" ]
2
simple
{ "case_1": [ 273, 1088 ], "case_2": [ 273, 1088 ], "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 are the address numbers that are located in Gansu district?
address numbers refers to address_id;
SELECT address_id FROM address WHERE district = 'Gansu'
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,286
9,286
CREATE TABLE `address` ( CREATE TABLE "address" address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district 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
Please list three types of film along with their IDs and the latest update.
types of film refers to the name of a category; IDs refers to category_id; latest update refers to last_update.
SELECT DISTINCT name, category_id, last_update FROM category LIMIT 3
CREATE TABLE "category" ( category_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,287
9,287
CREATE TABLE `category` ( CREATE TABLE "category" category_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null )
[ "LIMIT", "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 list the full names of any three inactive customers.
full name refers to first_name, last_name; inactive customers refers to active = 0
SELECT first_name, last_name FROM customer WHERE active = 0 LIMIT 3
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,288
9,288
CREATE TABLE `customer` ( first_name TEXT not null, last_name TEXT not null, active INTEGER default 1 not null )
[ "LIMIT", "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
What is the rental price per day for Airplane Sierra?
rental price per day refers to DIVIDE(rental_price, rental_duration); 'Airplane Sierra' is a title of a film
SELECT rental_rate / rental_duration AS result FROM film WHERE title = 'AIRPLANE SIERRA'
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,289
9,289
CREATE TABLE `film` ( title TEXT not null, rental_duration INTEGER default 3 not null, rental_rate REAL default 4.99 not null )
[ "AS", "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
Where is store number 2 located?
store number 2 refers to store_id = 2; where is a store located 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,290
9,290
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 city does the address 1623 Kingstown Drive belong to?
SELECT T1.city FROM city AS T1 INNER JOIN address AS T2 ON T2.city_id = T1.city_id WHERE T2.address = '1623 Kingstown Drive'
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 "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 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,291
9,291
CREATE TABLE `address` ( CREATE TABLE "address" address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, city_id INTEGER not null references city on update cascade ) CREATE TABLE `city` ( CREATE TABLE "city" city_id INTEGER primary key autoincrement, city 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
Please name three cities that belong to Algeria.
Algeria is a country
SELECT T2.city FROM country AS T1 INNER JOIN city AS T2 ON T1.country_id = T2.country_id WHERE T1.country = 'Algeria'
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,292
9,292
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
What is the category of the film Agent Truman?
'Agent Truman' is a title of a film; category refers to name
SELECT T3.name 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 T1.title = 'AGENT TRUMAN'
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,293
9,293
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
Please list the titles of any three action films.
action is a 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 = 'Action' LIMIT 3
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,294
9,294
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", "LIMIT", "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, 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, 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, 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, 286, 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, 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, 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, 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, 999, 1000, 1001, 1003, 1004, 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, 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, 1122, 1123, 1124, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137 ] }
movie_3
What is the difference between the number of children's films and action films?
'children' AND 'action' are names of a category; Calculation = SUBTRACT(AVG('children'), AVG('action'))
SELECT SUM(IIF(T2.name = 'Children', 1, 0)) - SUM(IIF(T2.name = 'Action', 1, 0)) AS diff FROM film_category AS T1 INNER JOIN category AS T2 ON T1.category_id = T2.category_id
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,295
9,295
CREATE TABLE `category` ( CREATE TABLE "category" category_id INTEGER primary key autoincrement, name TEXT not null ) CREATE TABLE `film_category` ( category_id INTEGER not null references category on update cascade, category_id )
[ "AS", "SELECT", "SUM", "INNER JOIN", "ON", "FROM" ]
9
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, 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 ] }
movie_3
Which district does Maria Miller live in?
'Maria Miller' is a name of a customer; full name refers to first_name, last_name
SELECT T2.district FROM customer AS T1 INNER JOIN address AS T2 ON T1.address_id = T2.address_id WHERE T1.first_name = 'Maria' AND T1.last_name = 'Miller'
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 "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,296
9,296
CREATE TABLE `address` ( CREATE TABLE "address" address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null ) CREATE TABLE `customer` ( first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade )
[ "AS", "AND", "SELECT", "INNER JOIN", "ON", "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, 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
Who is the customer that is active and lives at 1795 Santiago de Compostela Way, Texas?
active refers to active = 1; '1795 Santiago de Compostela Way' is an address; Texas is a district; who refers to first_name, last_name
SELECT T1.first_name, T1.last_name FROM customer AS T1 INNER JOIN address AS T2 ON T1.address_id = T2.address_id WHERE T2.address = '1795 Santiago de Compostela Way' AND T1.active = 1
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 "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,297
9,297
CREATE TABLE `address` ( CREATE TABLE "address" address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT ) CREATE TABLE `customer` ( first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade, active INTEGER default 1 not null )
[ "AS", "AND", "SELECT", "INNER JOIN", "ON", "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, 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 English films have a duration of over 50 minutes and the cost of replacement are under 10.99?
English is a name of a language; duration of over 50 minutes refers to length > 50; cost of replacement are under 10.99 refers to replacement_cost < 10.99
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' AND T1.length > 50 AND T1.replacement_cost < 10.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 "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,298
9,298
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, length INTEGER, replacement_cost REAL default 19.99 not null ) CREATE TABLE `language` ( CREATE TABLE "language" language_id INTEGER primary key autoincrement, name TEXT not null )
[ "AS", "AND", "SELECT", "INNER JOIN", "ON", "length", "COUNT", "FROM" ]
10
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, 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 ] }
movie_3
Who are the actors that act in the ACADEMY DINOSAUR film?
Who are the actors refers to full name; full name refers to first_name, last_name; 'ACADEMY DINOSAUR' is a title of a 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,299
9,299
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
Please list any two films that Penelope Guiness acted in.
film refers to title of the film; 'Penelope Guiness' is a full name of an actor; full name refers to first_name, last_name
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' LIMIT 2
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,300
9,300
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", "LIMIT", "INNER JOIN", "ON", "FROM" ]
11
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, 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, 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, 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, 286, 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, 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, 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, 719, 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, 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, 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, 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 ] }
movie_3
What is the percentage of documentary films?
documentary' is a name of a category; calculation = DIVIDE(SUM(name = 'Documentary'), COUNT(film_id)) * 100
SELECT CAST(SUM(IIF(T2.name = 'Documentary', 1, 0)) AS REAL) * 100 / COUNT(T1.film_id) FROM film_category AS T1 INNER JOIN category AS T2 ON T1.category_id = T2.category_id
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,301
9,301
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", "SUM", "INNER JOIN", "ON", "CAST", "COUNT", "FROM" ]
10
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, 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, 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, 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
How many films in English are for adults only?
English is a name of a language; for adults only refers to rating = 'NC-17'
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' AND T1.rating = 'NC-17'
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,302
9,302
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, rating TEXT default 'G' ) CREATE TABLE `language` ( CREATE TABLE "language" language_id INTEGER primary key autoincrement, name TEXT not null )
[ "AS", "AND", "SELECT", "-", "INNER JOIN", "ON", "COUNT", "FROM" ]
9
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, 32, 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, 259, 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, 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, 667, 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, 817, 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 ] }
movie_3
Which film has the longest duration?
film refers to the title; the longest duration refers to MAX(length)
SELECT title FROM film WHERE length = ( SELECT MAX(length) 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,303
9,303
CREATE TABLE `film` ( title TEXT not null )
[ "length", "SELECT", "FROM", "MAX" ]
7
simple
{ "case_1": [ 855 ], "case_2": [ 855 ], "case_3": [ 176, 404, 726, 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": [ 31, 35, 72, 94, 109, 119, 123, 176, 241, 270, 386, 404, 410, 466, 498, 529, 557, 565, 633, 642, 726, 820, 842, 845, 855, 856, 932, 984, 1026, 1028, 1073, 1118, 1138 ] }
movie_3
How many of the actors are named "Dan"?
'Dan' is a first_name of an actor
SELECT COUNT(actor_id) FROM actor WHERE first_name = 'Dan'
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_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,304
9,304
CREATE TABLE `actor` ( CREATE TABLE "actor" actor_id INTEGER primary key autoincrement, first_name TEXT not null )
[ "COUNT", "SELECT", "FROM" ]
3
simple
{ "case_1": [ 273, 1088 ], "case_2": [ 273, 1088 ], "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 most common first name among the customers?
the most common first name refers to MAX(COUNT(first_name))
SELECT first_name FROM customer GROUP BY first_name ORDER BY COUNT(first_name) 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_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,305
9,305
CREATE TABLE `customer` ( first_name TEXT not null )
[ "GROUP BY", "SELECT", "ORDER BY", "LIMIT", "COUNT", "FROM", "DESC" ]
7
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, 22, 28, 29, 36, 38, 43, 49, 55, 59, 62, 69, 73, 75, 78, 86, 89, 108, 115, 121, 125, 126, 133, 138, 140, 142, 143, 150, 159, 162, 163, 167, 169, 173, 174, 179, 181, 182, 185, 187, 188, 191, 199, 202, 206, 208, 213, 214, 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, 344, 345, 348, 349, 352, 353, 356, 359, 364, 365, 371, 373, 378, 379, 381, 385, 394, 395, 400, 403, 404, 409, 411, 424, 428, 429, 434, 435, 444, 445, 451, 454, 460, 462, 466, 469, 473, 481, 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, 630, 634, 637, 638, 645, 654, 657, 659, 664, 665, 669, 681, 688, 690, 691, 696, 698, 701, 703, 708, 713, 718, 719, 721, 732, 733, 735, 743, 748, 752, 759, 760, 768, 778, 779, 790, 803, 810, 815, 817, 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, 993, 994, 1004, 1005, 1006, 1010, 1013, 1017, 1024, 1025, 1030, 1034, 1037, 1038, 1043, 1047, 1049, 1050, 1051, 1056, 1057, 1065, 1067, 1068, 1070, 1076, 1077, 1083, 1094, 1106, 1124, 1135, 1137, 1139, 1141 ] }
movie_3
What are the ratings of the film featuring behind the scenes?
film featuring behind the scenes refers to special_features = 'Behind the Scenes'
SELECT rating FROM film WHERE special_features LIKE '%Behind the 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,306
9,306
CREATE TABLE `film` ( rating TEXT default 'G', special_features TEXT )
[ "LIKE", "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
What is the largest number of films rented per customer?
the largest number of films refers to MAX(rental_id)
SELECT COUNT(rental_id) FROM rental GROUP BY customer_id ORDER BY COUNT(rental_id) DESC LIMIT 1
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,307
9,307
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", "SELECT", "ORDER BY", "LIMIT", "COUNT", "FROM", "DESC" ]
8
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, 22, 28, 29, 36, 38, 43, 49, 55, 59, 62, 69, 73, 75, 78, 86, 89, 108, 115, 121, 125, 126, 133, 138, 140, 142, 143, 150, 159, 162, 163, 167, 169, 173, 174, 179, 181, 182, 185, 187, 188, 191, 199, 202, 206, 208, 213, 214, 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, 344, 345, 348, 349, 352, 353, 356, 359, 364, 365, 371, 373, 378, 379, 381, 385, 394, 395, 400, 403, 404, 409, 411, 424, 428, 429, 434, 435, 444, 445, 451, 454, 460, 462, 466, 469, 473, 481, 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, 630, 634, 637, 638, 645, 654, 657, 659, 664, 665, 669, 681, 688, 690, 691, 696, 698, 701, 703, 708, 713, 718, 719, 721, 732, 733, 735, 743, 748, 752, 759, 760, 768, 778, 779, 790, 803, 810, 815, 817, 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, 993, 994, 1004, 1005, 1006, 1010, 1013, 1017, 1024, 1025, 1030, 1034, 1037, 1038, 1043, 1047, 1049, 1050, 1051, 1056, 1057, 1065, 1067, 1068, 1070, 1076, 1077, 1083, 1094, 1106, 1124, 1135, 1137, 1139, 1141 ] }
movie_3
List all the films with the word "Lacklusture" in their description.
films refers to title
SELECT title FROM film_text WHERE description LIKE '%Lacklusture%'
CREATE TABLE film_text ( film_id INTEGER not null primary key, title TEXT not null, description TEXT 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,308
9,308
CREATE TABLE `film_text` ( title TEXT not null, description TEXT null )
[ "LIKE", "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
How many films did a customer named Francis Sikes rent?
'Francis Sikes' is a full name of a customer; full name refers to first_name, last_name;
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 = 'FRANCIS' AND T1.last_name = 'SIKES'
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,309
9,309
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 )
[ "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
Who is the manager of the store with the largest collection of films?
Who refers to first_name, last_name; the largest collection of films refers to MAX(film_id)
SELECT T.first_name, T.last_name FROM ( SELECT T3.first_name, T3.last_name, COUNT(T1.film_id) AS num FROM inventory AS T1 INNER JOIN store AS T2 ON T1.store_id = T2.store_id INNER JOIN staff AS T3 ON T2.manager_staff_id = T3.staff_id GROUP BY T3.first_name, T3.last_name ) AS T ORDER BY T.num DESC LIMIT 1
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 "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 )
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,310
9,310
CREATE TABLE `inventory` ( film_id INTEGER not null references film on update cascade, store_id INTEGER not null references store on update cascade ) CREATE TABLE `staff` ( CREATE TABLE "staff" staff_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null, store_id INTEGER not null references store on update cascade ) CREATE TABLE `store` ( CREATE TABLE "store" store_id INTEGER primary key autoincrement, manager_staff_id INTEGER not null unique references staff on update cascade )
[ "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
What are the addresses of the inactive customers?
inactive customers refers to active = 0;
SELECT T2.address FROM customer AS T1 INNER JOIN address AS T2 ON T1.address_id = T2.address_id WHERE T1.active = 0
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 "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,311
9,311
CREATE TABLE `address` ( CREATE TABLE "address" address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT ) CREATE TABLE `customer` ( address_id INTEGER not null references address on update cascade, active INTEGER default 1 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
Which category is the most common?
most common category refers to MAX(COUNT(category.name))
SELECT T.name FROM ( SELECT T2.name, COUNT(T2.name) AS num FROM film_category AS T1 INNER JOIN category AS T2 ON T1.category_id = T2.category_id GROUP BY T2.name ) AS T ORDER BY T.num DESC LIMIT 1
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,312
9,312
CREATE TABLE `category` ( CREATE TABLE "category" category_id INTEGER primary key autoincrement, name TEXT not null ) CREATE TABLE `film_category` ( category_id INTEGER not null references category on update cascade, category_id )
[ "GROUP BY", "AS", "SELECT", "ORDER BY", "LIMIT", "INNER JOIN", "ON", "DESC", "COUNT", "FROM" ]
15
medium
{ "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
Provide the cast for the film "Jason trap".
'Jason trap' is a title of a film; cast means actor; actor refers to first_name, last_name
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 = 'JASON TRAP'
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,313
9,313
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
Who is the customer with the largest payment for rental films?
Who refers to first_name, last_name; the largest payment for rental refers to MAX(SUM(amount))
SELECT T.first_name, T.last_name FROM ( SELECT T1.first_name, T1.last_name, SUM(T2.amount) AS num FROM customer AS T1 INNER JOIN payment 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 "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 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,314
9,314
CREATE TABLE `customer` ( CREATE TABLE "customer" customer_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null ) CREATE TABLE `payment` ( customer_id INTEGER not null references customer on update cascade, amount REAL not null )
[ "GROUP BY", "AS", "SELECT", "SUM", "ORDER BY", "LIMIT", "INNER JOIN", "ON", "DESC", "FROM" ]
15
medium
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ 254, 317, 483, 537, 584, 626, 658 ], "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, 6, 10, 11, 13, 15, 20, 22, 24, 28, 29, 36, 39, 42, 49, 55, 59, 62, 64, 69, 71, 73, 75, 77, 78, 81, 83, 86, 89, 93, 94, 108, 112, 113, 115, 120, 121, 125, 126, 127, 129, 138, 140, 141, 142, 143, 148, 150, 153, 155, 159, 162, 163, 167, 169, 173, 179, 184, 186, 187, 188, 189, 191, 195, 199, 200, 201, 202, 206, 207, 212, 213, 214, 219, 225, 226, 228, 229, 233, 234, 236, 239, 247, 248, 252, 254, 261, 262, 264, 275, 278, 279, 281, 285, 286, 300, 304, 309, 311, 313, 314, 316, 317, 319, 320, 323, 324, 329, 334, 335, 336, 341, 342, 344, 345, 347, 348, 349, 352, 353, 356, 359, 360, 363, 364, 365, 371, 373, 378, 379, 381, 383, 385, 394, 395, 402, 403, 409, 411, 412, 415, 424, 427, 428, 429, 434, 435, 438, 444, 445, 448, 450, 451, 452, 454, 460, 462, 469, 470, 473, 476, 482, 483, 486, 487, 488, 495, 497, 500, 505, 518, 530, 532, 535, 536, 537, 538, 540, 542, 547, 548, 550, 552, 560, 563, 564, 566, 567, 571, 575, 578, 579, 580, 581, 584, 586, 590, 592, 595, 597, 609, 611, 612, 621, 623, 625, 626, 628, 630, 634, 637, 638, 640, 645, 650, 651, 654, 657, 658, 659, 662, 664, 665, 666, 669, 676, 681, 682, 686, 688, 690, 691, 695, 696, 698, 701, 703, 710, 717, 719, 720, 721, 723, 733, 735, 740, 743, 744, 745, 747, 748, 750, 751, 752, 753, 759, 760, 762, 768, 776, 777, 778, 779, 787, 788, 790, 796, 800, 802, 803, 808, 810, 813, 818, 823, 825, 827, 830, 832, 841, 848, 850, 851, 861, 866, 868, 869, 870, 871, 874, 876, 882, 886, 889, 891, 893, 896, 901, 909, 911, 912, 918, 922, 924, 927, 929, 932, 934, 943, 944, 950, 951, 953, 954, 956, 958, 959, 962, 963, 966, 967, 970, 972, 973, 975, 977, 981, 987, 993, 994, 1004, 1005, 1006, 1010, 1012, 1013, 1017, 1023, 1025, 1027, 1030, 1031, 1034, 1037, 1038, 1043, 1047, 1049, 1050, 1051, 1056, 1057, 1064, 1065, 1067, 1068, 1076, 1077, 1078, 1082, 1087, 1091, 1092, 1094, 1098, 1100, 1106, 1124, 1135, 1137 ] }
movie_3
List the top 5 most-rented films.
film refers to title; most rented refers to MAX(inventory_id)
SELECT T.title FROM ( SELECT T3.title, COUNT(T2.inventory_id) AS num FROM rental AS T1 INNER JOIN inventory AS T2 ON T1.inventory_id = T2.inventory_id INNER JOIN film AS T3 ON T2.film_id = T3.film_id GROUP BY T3.title ) AS T ORDER BY T.num DESC LIMIT 5
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,315
9,315
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, 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 country does Sasebo belong to?
'Sasebo' is a city
SELECT T1.country FROM country AS T1 INNER JOIN city AS T2 ON T1.country_id = T2.country_id WHERE T2.city = 'Sasebo'
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,316
9,316
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
What are the addresses for the stores?
SELECT T2.address FROM store AS T1 INNER JOIN address AS T2 ON T1.address_id = T2.address_id
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,317
9,317
CREATE TABLE `address` ( CREATE TABLE "address" address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT ) CREATE TABLE `store` ( 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
List all the animation titles.
'animation' is a name of a category
SELECT T3.title AS per 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 = 'Animation'
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,318
9,318
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" ]
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, 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
What is the city with the most customers?
the most customers refers to MAX(COUNT(customer_id))
SELECT T.city FROM ( SELECT T1.city, COUNT(T3.customer_id) AS num FROM city AS T1 INNER JOIN address AS T2 ON T2.city_id = T1.city_id INNER JOIN customer AS T3 ON T2.address_id = T3.address_id GROUP BY T1.city ) AS T ORDER BY T.num DESC LIMIT 1
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 "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 "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,319
9,319
CREATE TABLE `address` ( CREATE TABLE "address" address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, city_id INTEGER not null references city on update cascade ) CREATE TABLE `city` ( CREATE TABLE "city" city_id INTEGER primary key autoincrement, city TEXT not null ) CREATE TABLE `customer` ( CREATE TABLE "customer" customer_id INTEGER primary key autoincrement, address_id INTEGER not null references address on update cascade )
[ "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 actor acted in the most films?
actor refers to first_name, last_name; the most film refers to MAX(SUM(film_id))
SELECT T.first_name, T.last_name FROM ( SELECT T2.first_name, T2.last_name, SUM(T1.film_id) AS num FROM film_actor AS T1 INNER JOIN actor AS T2 ON T1.actor_id = T2.actor_id GROUP BY T2.first_name, T2.last_name ) AS T ORDER BY T.num 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_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,320
9,320
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_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 )
[ "GROUP BY", "AS", "SELECT", "SUM", "ORDER BY", "LIMIT", "INNER JOIN", "ON", "DESC", "FROM" ]
15
medium
{ "case_1": [ -1 ], "case_2": [ -1 ], "case_3": [ 254, 317, 483, 537, 584, 626, 658 ], "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, 6, 10, 11, 13, 15, 20, 22, 24, 28, 29, 36, 39, 42, 49, 55, 59, 62, 64, 69, 71, 73, 75, 77, 78, 81, 83, 86, 89, 93, 94, 108, 112, 113, 115, 120, 121, 125, 126, 127, 129, 138, 140, 141, 142, 143, 148, 150, 153, 155, 159, 162, 163, 167, 169, 173, 179, 184, 186, 187, 188, 189, 191, 195, 199, 200, 201, 202, 206, 207, 212, 213, 214, 219, 225, 226, 228, 229, 233, 234, 236, 239, 247, 248, 252, 254, 261, 262, 264, 275, 278, 279, 281, 285, 286, 300, 304, 309, 311, 313, 314, 316, 317, 319, 320, 323, 324, 329, 334, 335, 336, 341, 342, 344, 345, 347, 348, 349, 352, 353, 356, 359, 360, 363, 364, 365, 371, 373, 378, 379, 381, 383, 385, 394, 395, 402, 403, 409, 411, 412, 415, 424, 427, 428, 429, 434, 435, 438, 444, 445, 448, 450, 451, 452, 454, 460, 462, 469, 470, 473, 476, 482, 483, 486, 487, 488, 495, 497, 500, 505, 518, 530, 532, 535, 536, 537, 538, 540, 542, 547, 548, 550, 552, 560, 563, 564, 566, 567, 571, 575, 578, 579, 580, 581, 584, 586, 590, 592, 595, 597, 609, 611, 612, 621, 623, 625, 626, 628, 630, 634, 637, 638, 640, 645, 650, 651, 654, 657, 658, 659, 662, 664, 665, 666, 669, 676, 681, 682, 686, 688, 690, 691, 695, 696, 698, 701, 703, 710, 717, 719, 720, 721, 723, 733, 735, 740, 743, 744, 745, 747, 748, 750, 751, 752, 753, 759, 760, 762, 768, 776, 777, 778, 779, 787, 788, 790, 796, 800, 802, 803, 808, 810, 813, 818, 823, 825, 827, 830, 832, 841, 848, 850, 851, 861, 866, 868, 869, 870, 871, 874, 876, 882, 886, 889, 891, 893, 896, 901, 909, 911, 912, 918, 922, 924, 927, 929, 932, 934, 943, 944, 950, 951, 953, 954, 956, 958, 959, 962, 963, 966, 967, 970, 972, 973, 975, 977, 981, 987, 993, 994, 1004, 1005, 1006, 1010, 1012, 1013, 1017, 1023, 1025, 1027, 1030, 1031, 1034, 1037, 1038, 1043, 1047, 1049, 1050, 1051, 1056, 1057, 1064, 1065, 1067, 1068, 1076, 1077, 1078, 1082, 1087, 1091, 1092, 1094, 1098, 1100, 1106, 1124, 1135, 1137 ] }
movie_3
What percentage of films are horror films?
horror' is a name of a category; calculation = DIVIDE(SUM(name = 'Horror'), COUNT(film_id)) * 100
SELECT CAST(SUM(IIF(T2.name = 'Horror', 1, 0)) AS REAL) * 100 / COUNT(T1.film_id) 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
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,321
9,321
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 ) 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", "SUM", "INNER JOIN", "ON", "CAST", "COUNT", "FROM" ]
13
medium
{ "case_1": [ 176 ], "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, 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, 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
Please indicate the full name of actor id 5.
full name refers to first_name, last_name
SELECT first_name, last_name FROM actor WHERE actor_id = 5
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_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,322
9,322
CREATE TABLE `actor` ( CREATE TABLE "actor" actor_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null )
[ "SELECT", "FROM" ]
2
simple
{ "case_1": [ 273, 1088 ], "case_2": [ 273, 1088 ], "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 id movies have category id 11?
id movies refers to film_id
SELECT COUNT(film_id) FROM film_category WHERE category_id = 11
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,323
9,323
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 )
[ "COUNT", "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
Which category does BABY HALL film belong to?
category refers to name; BABY HALL film refers to title = 'BABY HALL'
SELECT T3.`name` FROM film AS T1 INNER JOIN film_category AS T2 ON T1.film_id = T2.film_id INNER JOIN category AS T3 ON T3.category_id = T2.category_id WHERE T1.title = 'BABY HALL'
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,324
9,324
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
Give the full name of the actor with the highest rental rate.
full name refers to first_name, last_name; the highest rental rate refers to max(rental_rate)
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 T3.film_id = T2.film_id ORDER BY T3.rental_rate 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,325
9,325
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, 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", "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
Please give the description of the movie starring JENNIFER DAVIS.
SELECT T3.description FROM actor AS T1 INNER JOIN film_actor AS T2 ON T1.actor_id = T2.actor_id INNER JOIN film AS T3 ON T3.film_id = T2.film_id WHERE T1.first_name = 'JOHNNY' AND T1.last_name = 'DAVIS'
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,326
9,326
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, description 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", "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
List the full names of customers who have paid more than 10$.
full name refers to first_name, last_name; more than 10$ refers to amount > 10
SELECT T2.first_name, T2.last_name FROM payment AS T1 INNER JOIN customer AS T2 ON T1.customer_id = T2.customer_id WHERE T1.amount > 10
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 "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 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,327
9,327
CREATE TABLE `customer` ( CREATE TABLE "customer" customer_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null ) CREATE TABLE `payment` ( customer_id INTEGER not null references customer on update cascade, amount REAL 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
Please provide the address of the customer whose first name is SUSAN with the postal code 77948.
SELECT T1.address FROM address AS T1 INNER JOIN customer AS T2 ON T1.address_id = T2.address_id WHERE T2.first_name = 'SUSAN' AND T1.postal_code = 77948
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 "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,328
9,328
CREATE TABLE `address` ( CREATE TABLE "address" address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, postal_code TEXT ) CREATE TABLE `customer` ( first_name TEXT not null, address_id INTEGER not null references address on update cascade )
[ "AS", "AND", "SELECT", "INNER JOIN", "ON", "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, 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 customers have an address in Abu Dhabi city? List those customer names.
name refers to first_name, last_name
SELECT COUNT(T1.city_id) FROM city AS T1 INNER JOIN address AS T2 ON T1.city_id = T2.city_id INNER JOIN customer AS T3 ON T2.address_id = T3.address_id WHERE T1.city = 'Abu Dhabi'
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 "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 "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,329
9,329
CREATE TABLE `address` ( CREATE TABLE "address" address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, city_id INTEGER not null references city on update cascade ) CREATE TABLE `city` ( CREATE TABLE "city" city_id INTEGER primary key autoincrement, city TEXT not null ) CREATE TABLE `customer` ( address_id INTEGER not null references address on update cascade )
[ "AS", "SELECT", "INNER JOIN", "ON", "COUNT", "FROM" ]
10
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 provide the full name of the customer at 692 Joliet Street.
full name refers to first_name, last_name; 692 Joliet Street refers to address = '692 Joliet Street'
SELECT T2.first_name, T2.last_name FROM address AS T1 INNER JOIN customer AS T2 ON T1.address_id = T2.address_id WHERE T1.address = '692 Joliet Street'
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 "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,330
9,330
CREATE TABLE `address` ( CREATE TABLE "address" address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT ) CREATE TABLE `customer` ( first_name TEXT not null, last_name TEXT not null, address_id INTEGER not null references address on update cascade )
[ "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
List movie titles with duration over 120 minutes that are in the action category.
duration over 120 minutes refers to length > 120; action category refers to category.name = 'action'
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 T3.category_id = T2.category_id WHERE T3.`name` = 'action' AND T1.length > 120
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,331
9,331
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, length INTEGER ) 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", "length", "FROM" ]
11
medium
{ "case_1": [ 176 ], "case_2": [ 176, 658 ], "case_3": [ 176, 218, 220, 254, 265, 317, 325, 369, 483, 537, 584, 596, 626, 658, 726, 814, 855, 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, 855, 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
Which actor acted in ANONYMOUS HUMAN?
actor refers to first_name, last_name; ANONYMOUS HUMAN refers to title = 'ANONYMOUS HUMAN'
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 T3.film_id = T2.film_id WHERE T3.title = 'ANONYMOUS HUMAN'
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,332
9,332
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
Which movie title has the lowest movie rental in the horror category?
the lowest movie rental refers to min(rental_rate); the horror category refers to category.name = 'Horror'
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' ORDER BY T1.rental_rate LIMIT 1
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,333
9,333
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", "SELECT", "ORDER BY", "LIMIT", "INNER JOIN", "ON", "FROM" ]
11
medium
{ "case_1": [ 176 ], "case_2": [ 176, 658 ], "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, 178, 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, 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, 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, 713, 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, 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, 929, 930, 931, 932, 934, 935, 936, 937, 938, 940, 941, 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, 989, 991, 993, 994, 996, 997, 999, 1000, 1001, 1003, 1004, 1005, 1006, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1022, 1023, 1024, 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, 1075, 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
List the descriptions of movies under the category Travel.
the category Travel refers to category.name = 'Travel'
SELECT T1.description 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` = 'Travel'
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,334
9,334
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, description TEXT ) 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
Calculate the total payment amount of customers in Nagasaki district.
the total payment amount refers to sum(amount)
SELECT SUM(T1.amount) FROM payment AS T1 INNER JOIN customer AS T2 ON T1.customer_id = T2.customer_id INNER JOIN address AS T3 ON T3.address_id = T2.address_id WHERE T3.district = 'Nagasaki'
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 "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 "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 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,335
9,335
CREATE TABLE `address` ( CREATE TABLE "address" address_id INTEGER primary key autoincrement, address TEXT not null, address2 TEXT, district TEXT not null ) CREATE TABLE `customer` ( CREATE TABLE "customer" customer_id INTEGER primary key autoincrement, address_id INTEGER not null references address on update cascade ) CREATE TABLE `payment` ( customer_id INTEGER not null references customer on update cascade, amount REAL not null )
[ "AS", "SELECT", "SUM", "INNER JOIN", "ON", "FROM" ]
10
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, 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 ] }
movie_3
Calculate the percentage of total payment of MARGARET MOORE customers.
percentage = divide(sum(amount where first_name = 'MARGARET' and last_name = 'MOORE'), sum(amount)) * 100%
SELECT CAST(SUM(IIF(T2.first_name = 'MARGARET' AND T2.last_name = 'MOORE', T1.amount, 0)) AS REAL) * 100 / SUM(T1.amount) FROM payment AS T1 INNER JOIN customer AS T2 ON T1.customer_id = T2.customer_id
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 "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 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,336
9,336
CREATE TABLE `customer` ( CREATE TABLE "customer" customer_id INTEGER primary key autoincrement, first_name TEXT not null, last_name TEXT not null ) CREATE TABLE `payment` ( customer_id INTEGER not null references customer on update cascade, amount REAL not null )
[ "AS", "AND", "SELECT", "SUM", "INNER JOIN", "ON", "CAST", "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, 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 ] }
movie_3
Calculate the percentage of movie titles with a screen length of more than 120 minutes that have a category of horror movies.
screen length of more than 120 minutes refers to length > 120; category of horror refers to category.name = 'Horror'; percentage = divide(count(title where length > 120 and category.name = 'Horror'), count(title)) * 100%
SELECT CAST(SUM(IIF(T3.`name` = 'Horror', 1, 0)) * 100 / COUNT(T1.film_id) AS REAL) FROM film AS T1 INNER JOIN film_category AS T2 ON T1.film_id = T2.film_id INNER JOIN category AS T3 ON T3.category_id = T2.category_id WHERE T1.length > 120
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,337
9,337
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, length INTEGER ) 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", "SUM", "INNER JOIN", "ON", "length", "CAST", "COUNT", "FROM" ]
14
medium
{ "case_1": [ 176 ], "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, 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, 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
How many film titles were released in 2006?
released in 2006 refers to release_year = 2006
SELECT COUNT(film_id) FROM film WHERE 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,338
9,338
CREATE TABLE `film` ( CREATE TABLE "film" film_id INTEGER primary key autoincrement, release_year TEXT )
[ "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
List down film titles from id 1 to 10.
id 1 to 10 refers to film_id BETWEEN 1 and 10
SELECT title FROM film WHERE film_id BETWEEN 1 AND 10
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,339
9,339
CREATE TABLE `film` ( CREATE TABLE "film" film_id INTEGER primary key autoincrement, title TEXT not null )
[ "BETWEEN", "AND", "SELECT", "FROM" ]
4
simple
{ "case_1": [ 855 ], "case_2": [ 855 ], "case_3": [ 176, 265, 317, 325, 350, 537, 584, 626, 726, 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": [ 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, 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, 173, 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, 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, 637, 641, 643, 648, 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, 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, 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, 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 ] }
movie_3
List down all of the film IDs with highest rental duration.
highest rental duration refers to max(rental_duration)
SELECT film_id FROM film WHERE rental_duration = ( SELECT MAX(rental_duration) 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,340
9,340
CREATE TABLE `film` ( CREATE TABLE "film" film_id INTEGER primary key autoincrement, rental_duration INTEGER default 3 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
Which film titles have the most expensive rental rate?
the most expensive rental rate refers to max(rental_rate)
SELECT title FROM film WHERE rental_rate = ( SELECT MAX(rental_rate) 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,341
9,341
CREATE TABLE `film` ( title TEXT not null, rental_rate REAL default 4.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
List down all of the film titles that are rated for general audiences.
rated for general audiences means rating = 'G'
SELECT title FROM film WHERE rating = 'G'
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,342
9,342
CREATE TABLE `film` ( title TEXT not null, rating TEXT default 'G' )
[ "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 language for film titled "CHILL LUCK"?
SELECT T2.`name` FROM film AS T1 INNER JOIN `language` AS T2 ON T1.language_id = T2.language_id WHERE T1.title = 'CHILL LUCK'
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,343
9,343
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
What are the last updated date for English film titles that were released in 2006?
the last updated date refers to last_update; English is name of language; released in 2006 refers to release_year = 2006
SELECT DISTINCT T1.last_update FROM film AS T1 INNER JOIN `language` AS T2 ON T1.language_id = T2.language_id WHERE T2.`name` = 'English' AND T1.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 "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,344
9,344
CREATE TABLE `film` ( release_year TEXT, language_id INTEGER not null references language on update cascade, original_language_id INTEGER references language on update cascade, last_update DATETIME default CURRENT_TIMESTAMP not null ) CREATE TABLE `language` ( CREATE TABLE "language" language_id INTEGER primary key autoincrement, name TEXT not null, last_update DATETIME default CURRENT_TIMESTAMP not null )
[ "AS", "AND", "SELECT", "INNER JOIN", "ON", "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, 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 Italian film titles were special featured with deleted scenes?
Italian is name of language; special featured with deleted scenes refers to special_features = 'deleted scenes'
SELECT COUNT(T1.film_id) FROM film AS T1 INNER JOIN `language` AS T2 ON T1.language_id = T2.language_id WHERE T2.`name` = 'Italian' AND T1.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 "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,345
9,345
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, special_features TEXT ) CREATE TABLE `language` ( CREATE TABLE "language" language_id INTEGER primary key autoincrement, name TEXT not null )
[ "AS", "AND", "SELECT", "INNER JOIN", "ON", "COUNT", "FROM" ]
8
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, 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
How many animation film titles are rated for adults only?
animation film refers to category.name = 'animation'; for adults only means rating = 'NC-17'
SELECT COUNT(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 = 'animation' AND T1.rating = 'NC-17'
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,346
9,346
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, rating TEXT default 'G' ) 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", "COUNT", "FROM" ]
12
medium
{ "case_1": [ 176 ], "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, 11, 12, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 32, 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, 259, 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, 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, 667, 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, 817, 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 ] }
movie_3
List down all ratings of action film titles.
for General Audiences means rating = 'G'; Parental Guidance Suggested means rating = 'PG'; Parents Strongly Cautioned means rating = 'PG-13'; Restricted means rating = 'R'; Adults Only means rating = 'NC-17'; action film refers to category.name = 'action'
SELECT T1.description 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 = 'action'
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,347
9,347
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, description TEXT ) 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
List down all film IDs of comedy film titles.
comedy is name of category
SELECT 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 T3.category_id = T2.category_id WHERE T3.name = 'comedy'
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,348
9,348
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 ) 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
State the documentary film titles with longest length.
documentary film refers to name = 'documentary'; longest length refers to max(length)
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 T3.category_id = T2.category_id WHERE T3.name = 'documentary' ORDER BY T1.length DESC LIMIT 1
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,349
9,349
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, length INTEGER ) 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", "ORDER BY", "LIMIT", "INNER JOIN", "ON", "DESC", "length", "FROM" ]
13
medium
{ "case_1": [ 176 ], "case_2": [ 176, 658 ], "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
What is the category of film titled "BLADE POLISH"?
SELECT T3.name FROM film AS T1 INNER JOIN film_category AS T2 ON T1.film_id = T2.film_id INNER JOIN category AS T3 ON T3.category_id = T2.category_id WHERE T1.title = 'BLADE POLISH'
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,350
9,350
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
What is Mary Smith's rental ID?
SELECT T2.rental_id FROM customer AS T1 INNER JOIN rental AS T2 ON T1.customer_id = T2.customer_id WHERE T1.first_name = 'MARY' AND T1.last_name = 'SMITH'
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,351
9,351
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", "FROM" ]
7
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, 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
List down all of the customers' first name who were attended by staff with ID 1.
SELECT DISTINCT T1.first_name, T1.last_name FROM customer AS T1 INNER JOIN rental AS T2 ON T1.customer_id = T2.customer_id WHERE T2.staff_id = 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,352
9,352
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, staff_id INTEGER not null references staff on update cascade, customer_id )
[ "AS", "SELECT", "INNER JOIN", "ON", "FROM" ]
6
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, 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
List down email address of customers who were attended by staff with ID 2.
email address refers to email
SELECT DISTINCT T1.email FROM customer AS T1 INNER JOIN rental AS T2 ON T1.customer_id = T2.customer_id WHERE T2.staff_id = 2
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,353
9,353
CREATE TABLE `customer` ( CREATE TABLE "customer" customer_id INTEGER primary key autoincrement, email TEXT ) CREATE TABLE `rental` ( customer_id INTEGER not null references customer on update cascade, staff_id INTEGER not null references staff on update cascade, customer_id )
[ "AS", "SELECT", "INNER JOIN", "ON", "FROM" ]
6
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, 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 ] }