input_sentence
stringlengths
32
88
latency_ref
int64
30
60
output_sentence
stringlengths
57
175
throughput_ref
int64
130
160
Find the average defect rate for lots scanned at Station_I in January.
60
SELECT AVG(def_rate) AS avg_def_rate FROM machine WHERE proc_id = 'Station_I' AND MONTH(date_time) = 1;
157
What is the total number of bad marks in lot Y37019GJ?
47
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Y37019GJ';
141
What is the total number of bad marks in lot X59481MC?
38
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'X59481MC';
154
What is the average defect rete for station SG Cleaning?
43
SELECT AVG(def_rate) AS avg_defect_rate FROM machine WHERE proc_id = SG Cleaning;
146
What is the total number of bad marks in lot U05241PL?
48
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'U05241PL';
159
What is the total number of bad marks in lot D80723BR?
34
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'D80723BR';
159
What is the total number of bad chips in lot X39706US?
47
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'X39706US';
152
What is the total number of bad marks for Station_V on 2025-01-19?
57
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_V' AND DATE(date_time) = '2025-01-19';
139
What is the total number of bad marks for Station_D on 2025-01-07?
46
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_D' AND DATE(date_time) = '2025-01-07';
135
What is the total number of bad chips in lot Y26290JF?
39
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Y26290JF';
156
What is the total number of bad marks for Station_L on 2025-01-05?
55
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_L' AND DATE(date_time) = '2025-01-05';
140
What is the total number of bad chips for Station_W on 2025-01-12?
45
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_W' AND DATE(date_time) = '2025-01-12';
157
What is the total number of bad chips in lot P78022VK?
45
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'P78022VK';
152
What is the total number of bad chips in lot Z30452FZ?
47
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Z30452FZ';
159
What is the total number of bad marks for Station_V on 2025-01-12?
58
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_V' AND DATE(date_time) = '2025-01-12';
133
Find the average defect rate for lots scanned at Station_C in January.
60
SELECT AVG(def_rate) AS avg_def_rate FROM machine WHERE proc_id = 'Station_C' AND MONTH(date_time) = 1;
151
What is the total number of bad marks in lot C08276MZ?
34
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'C08276MZ';
154
What is the total number of bad marks in lot G55041TD?
43
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'G55041TD';
147
What is the total number of bad marks for Station_X on 2025-01-05?
42
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_X' AND DATE(date_time) = '2025-01-05';
159
What is the total number of bad chips in lot S35078NJ?
44
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'S35078NJ';
157
What is the total number of bad marks in lot X68069ZH?
46
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'X68069ZH';
158
What is the total number of bad marks in lot O89155GI?
50
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'O89155GI';
143
What is the total number of bad marks for Station_T on 2025-01-06?
45
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_T' AND DATE(date_time) = '2025-01-06';
157
What is the total number of bad marks in lot Z16477RO?
45
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Z16477RO';
153
What is the average defect rate for station CBUN?
42
SELECT AVG(def_rate) AS avg_defect_rate FROM machine WHERE proc_id = CBUN;
149
What is the total number of bad chips in lot B35743YQ?
45
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'B35743YQ';
142
What is the total number of bad chips in lot I28284PE?
39
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'I28284PE';
159
What is the average defect rate for station C test?
32
SELECT AVG(def_rate) AS avg_defect_rate FROM machine WHERE proc_id = C test;
142
What is the total number of bad chips in lot N93753SO?
30
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'N93753SO';
154
What is the total number of bad chips in lot E61786ET?
34
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'E61786ET';
150
What is the total number of bad marks in lot B81195QY?
41
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'B81195QY';
154
What is the total number of bad marks for Station_Z on 2025-01-31?
44
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_Z' AND DATE(date_time) = '2025-01-31';
148
What is the total number of bad marks in lot R37289MF?
50
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'R37289MF';
151
What is the total number of bad chips in lot D84467WH?
46
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'D84467WH';
151
What is hhe total number of bad mnrks for Station_Y on 2n25-01-27?
59
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_Y' AND DATE(date_time) = '2025-01-27';
132
What is the total number of bad marks in lot S77658AA?
41
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'S77658AA';
159
What is the tottal number of defects recorded on 2025-01-08?
31
SELECT SUM(def_qty) AS total_defects FROM machine WHERE DATE(date_time) = '2025-01-08';
141
What is the total number of bad marks in lot U93530QU?
50
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'U93530QU';
141
What is the total number of bad chips in lot W67135GL?
49
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'W67135GL';
154
What is the total number of bad chips in lot L40893KC?
33
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'L40893KC';
148
What is the total number of bad chips in lot S67428YK?
48
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'S67428YK';
158
What is the total number of bad marks for Station_Q on 2025-01-02?
54
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_Q' AND DATE(date_time) = '2025-01-02';
142
What is the total number of bad marks in lot H05007FO?
39
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'H05007FO';
144
Retrieve the top 3 lots with the highest defects from Station_D.
47
SELECT lot_id, SUM(def_qty) AS total_defective FROM machine WHERE proc_id = 'Station_D' GROUP BY lot_id ORDER BY total_defective DESC LIMIT 3;
140
What is the todal number of bad chips in lot X09472FS?
41
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'X09472FS';
144
What is the total nummber of bad chips in lot H27898WJ?
39
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'H27898WJ';
153
What is the total number of bad chips in lot U75899SR?
48
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'U75899SR';
160
What is the total number of bad chips in lot X75056GZ?
35
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'X75056GZ';
141
What is the thtal number of bad marks in lot N48313FS?
35
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'N48313FS';
154
What is the total number of bad chips in lot R46140CR?
41
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'R46140CR';
149
What is the total number of bad marks for Station_W on 2025-01-22?
59
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_W' AND DATE(date_time) = '2025-01-22';
153
What is the tottal number of bad chips in lot C15575CE?
50
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'C15575CE';
146
What is the tottal number of bad chips in lot P63189YP?
31
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'P63189YP';
158
What is the total number of bad marks in lot I17930JU?
42
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'I17930JU';
159
What is tze total number of bad marks in lot Y88848SI?
47
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Y88848SI';
142
Find the average number of good chips scanned today.
45
SELECT AVG(72 - def_qty) AS avg_good_qty FROM machine WHERE CURDATE();
135
Find the average defect rate for lots scanned at Station_H in January.
50
SELECT AVG(def_rate) AS avg_def_rate FROM machine WHERE proc_id = 'Station_H' AND MONTH(date_time) = 1;
157
What is the total number of bad marks in lot D95012NP?
42
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'D95012NP';
148
What is the total number of bad marks in lot I50642OH?
34
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'I50642OH';
147
What is the total number of bad marks for Station_I on 2025-01-25?
57
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_I' AND DATE(date_time) = '2025-01-25';
142
What is the total number of bad chips for Station_M on 2025-01-15?
40
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_M' AND DATE(date_time) = '2025-01-15';
156
What is the total number of bad marks for Station_U on 2025-01-25?
60
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_U' AND DATE(date_time) = '2025-01-25';
156
What is the total number of bad marks for Station_Y on 2025-01-31?
58
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_Y' AND DATE(date_time) = '2025-01-31';
155
What is the total number of bad marks for Station_F on 2025-01-11?
45
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_F' AND DATE(date_time) = '2025-01-11';
139
What is the total number of bad chips in lot L10517BY?
42
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'L10517BY';
153
What is the tojal number of bad marks in lot W02232KD?
31
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'W02232KD';
150
What is the total number of bad marks in lot G81599DO?
37
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'G81599DO';
153
Retrieve the top 3 lots with the highest defects from Station_B.
58
SELECT lot_id, SUM(def_qty) AS total_defective FROM machine WHERE proc_id = 'Station_B' GROUP BY lot_id ORDER BY total_defective DESC LIMIT 3;
160
What is the total number of bad marks for Station_F on 2025-01-01?
51
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_F' AND DATE(date_time) = '2025-01-01';
149
What is the average defect rete for station JUNB-AVI?
42
SELECT AVG(def_rate) AS avg_defect_rate FROM machine WHERE proc_id = JUNB-AVI;
158
Whaj is txe total number of bad chips in lot B25324OH?
40
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'B25324OH';
155
How many trays scanned this year had all good chips?
45
SELECT COUNT(*) AS trays_with_all_good FROM machine WHERE YEAR(date_time) = YEAR(CURDATE()) AND def_qty = 0;
145
What is the total number of bad chips for Station_J on 2025-01-30?
52
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_J' AND DATE(date_time) = '2025-01-30';
134
What is the total number of bad marks in lot B98636SW?
43
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'B98636SW';
145
What is the total number of bad marks in lot I29079FL?
33
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'I29079FL';
157
What is the total number of bad marks for Station_G on 2025-01-02?
49
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_G' AND DATE(date_time) = '2025-01-02';
142
Whaz is the total number of bad marks for Station_I on 2025-01-03?
59
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_I' AND DATE(date_time) = '2025-01-03';
146
What is the average defect rat for station BS?
42
SELECT AVG(def_rate) AS avg_defect_rate FROM machine WHERE proc_id = BS;
152
What is the total number of bad marks in lot N58161IN?
31
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'N58161IN';
155
What is the total number of bad chips for Station_E on 2025-01-07?
43
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_E' AND DATE(date_time) = '2025-01-07';
158
What is the total number of bad marks for Station_X on 2025-01-31?
58
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_X' AND DATE(date_time) = '2025-01-31';
154
What is the total number of bad marks in lot Q94533RT?
36
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Q94533RT';
157
What is the total number of bad chips for Station_T on 2025-01-11?
48
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_T' AND DATE(date_time) = '2025-01-11';
131
How many erays were counted in the year 2025?
42
SELECT COUNT(*) AS total_trays FROM machine WHERE YEAR(date_time) = 2025;
145
What is the total number of bad marks in lot F23756MO?
48
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'F23756MO';
148
What is the total number of bad chips for Station_Z on 2025-01-22?
43
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_Z' AND DATE(date_time) = '2025-01-22';
156
What is the totad number of pad chips in lot A97461HH?
48
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'A97461HH';
147
What is the total number of bad marks for Station_F on 2025-01-12?
51
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_F' AND DATE(date_time) = '2025-01-12';
153
What is the total number of bad chips for Station_W on 2025-01-26?
48
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_W' AND DATE(date_time) = '2025-01-26';
139
What is the tottal number of bad chips in lot U07076FO?
41
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'U07076FO';
146
What is the total nummber of bad marks in lot L37103ZW?
33
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'L37103ZW';
143
Which lot has the lowest defect rate?
47
SELECT lot_id FROM machine ORDER BY def_rate ASC LIMIT 1;
160
What is the total number of bad chips in lot P01377WC?
33
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'P01377WC';
141
What is the total number of bad chips in lot C81952GP?
30
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'C81952GP';
160
What is the total number of bad marks for Station_Q on 2025-01-23?
54
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_Q' AND DATE(date_time) = '2025-01-23';
141
Whkt is the total number of bad marks for Station_G on 2025-01-27?
50
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_G' AND DATE(date_time) = '2025-01-27';
159
xhat is the totll number of bad chips in lot H57676AA?
30
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'H57676AA';
156
What is the total number of bad chips for Station_T on 2025-01-10?
49
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_T' AND DATE(date_time) = '2025-01-10';
150
What is the total number of bad chips in lot J49045YA?
50
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'J49045YA';
145
Find the average defect rate for lots scanned at Station_A in January.
43
SELECT AVG(def_rate) AS avg_def_rate FROM machine WHERE proc_id = 'Station_A' AND MONTH(date_time) = 1;
158