input_sentence
stringlengths 32
88
| latency_ref
int64 30
60
| output_sentence
stringlengths 57
175
| throughput_ref
int64 130
160
|
|---|---|---|---|
What is the total number of bad chips for Station_B on 2025-01-01?
| 49
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_B' AND DATE(date_time) = '2025-01-01';
| 138
|
What is the total number of bad marks in lot T04843UG?
| 50
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'T04843UG';
| 155
|
How many working chips were scanned today?
| 42
|
SELECT COUNT(*) AS total_working_chips FROM machine WHERE CURDATE() AND def_qty = 0;
| 145
|
What is the total number of bad marks for Station_R on 2025-01-04?
| 55
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_R' AND DATE(date_time) = '2025-01-04';
| 145
|
What is the total number of bad chips for Station_T on 2025-01-26?
| 55
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_T' AND DATE(date_time) = '2025-01-26';
| 152
|
What is the average number of good chips scanned yesterday?
| 45
|
SELECT AVG(good_qty) AS avg_good_chips FROM machine WHERE CURDATE() - INTERVAL 1 DAY;
| 140
|
What is the total number of bad marks in lot H05731QF?
| 35
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'H05731QF';
| 145
|
What is the tottal number of bad chips in lot U11164YG?
| 36
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'U11164YG';
| 155
|
What is the total number of bad marks in lot F63080DT?
| 30
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'F63080DT';
| 149
|
What is the total number of bad marks in lot N69206TA?
| 33
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'N69206TA';
| 153
|
What is the total nummber of bad chips in lot C75647GT?
| 44
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'C75647GT';
| 147
|
What is the total number of bad chips for Station_W on 2025-01-07?
| 54
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_W' AND DATE(date_time) = '2025-01-07';
| 160
|
What is the total number of bad marks for Station_B on 2025-01-03?
| 48
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_B' AND DATE(date_time) = '2025-01-03';
| 143
|
What is the total nummber of bad marks in lot J12779GB?
| 33
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'J12779GB';
| 155
|
What is the total number of bad chips in lot Y80364NI?
| 32
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Y80364NI';
| 142
|
What is the total number of bad chips for Station_T on 2025-01-25?
| 60
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_T' AND DATE(date_time) = '2025-01-25';
| 147
|
What is the tottal nummber of bad chips in lot O78198LZ?
| 30
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'O78198LZ';
| 158
|
What is the total number of bad marks for Station_J on 2025-01-06?
| 49
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_J' AND DATE(date_time) = '2025-01-06';
| 152
|
What is the total number of bad marks in lot T81009FH?
| 42
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'T81009FH';
| 158
|
What is the total number of bad chips in lot L03127DY?
| 30
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'L03127DY';
| 141
|
What is the averge defect rat for station C test?
| 39
|
SELECT AVG(def_rate) AS avg_defect_rate FROM machine WHERE proc_id = C test;
| 141
|
What is the total number of bad chips for Station_G on 2025-01-11?
| 48
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_G' AND DATE(date_time) = '2025-01-11';
| 160
|
What is the total number of bad marks for Station_V on 2025-01-05?
| 41
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_V' AND DATE(date_time) = '2025-01-05';
| 141
|
What is the total number of bad marks in lot D90983ER?
| 35
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'D90983ER';
| 153
|
What is the total number of bad marks for Station_U on 2025-01-31?
| 57
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_U' AND DATE(date_time) = '2025-01-31';
| 159
|
What is the total number of bad chips in lot E62645RY?
| 38
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'E62645RY';
| 158
|
What is the total number of bad marks for Station_D on 2025-01-09?
| 49
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_D' AND DATE(date_time) = '2025-01-09';
| 144
|
What is the total number of bad marks for Station_Q on 2025-01-29?
| 40
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_Q' AND DATE(date_time) = '2025-01-29';
| 154
|
What is the tottal number of bad marks in lot P78022VK?
| 40
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'P78022VK';
| 147
|
What is the total nummber of bad chips in lot F55889RZ?
| 33
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'F55889RZ';
| 157
|
How many good chips were scanned last week?
| 40
|
SELECT SUM(72 - def_qty) AS total_good_chips FROM machine WHERE WEEK(date_time) = WEEK(CURDATE() - INTERVAL 1 WEEK);
| 150
|
What is the total number of bad marks fov Siation_S on 2025-01-14?
| 55
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_S' AND DATE(date_time) = '2025-01-14';
| 147
|
What is the total number of bad chips in lot O02348DG?
| 40
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'O02348DG';
| 156
|
What is the total number of bad chips for Station_F on 2025-01-17?
| 41
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_F' AND DATE(date_time) = '2025-01-17';
| 130
|
What is the total nummber of bad chips in lot K72580EG?
| 46
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'K72580EG';
| 155
|
What is the total number of bad chips in lot U11164YG?
| 41
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'U11164YG';
| 160
|
Whae is the total number of bad chips in lot S17487RH?
| 36
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'S17487RH';
| 157
|
What is the total number of bad chips in lot L03530YI?
| 37
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'L03530YI';
| 141
|
What is the total number of bad marks for Station_G on 2025-01-21?
| 46
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_G' AND DATE(date_time) = '2025-01-21';
| 152
|
What is the total number of bad marks in lot G23665LW?
| 40
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'G23665LW';
| 155
|
What is the average defect rete for station C test?
| 33
|
SELECT AVG(def_rate) AS avg_defect_rate FROM machine WHERE proc_id = C test;
| 147
|
What is the total number of bad chips in lot K08052IN?
| 45
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'K08052IN';
| 155
|
What is the total number of bad marks for Station_R on 2025-01-10?
| 50
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_R' AND DATE(date_time) = '2025-01-10';
| 149
|
What is the total number of bad marks for Station_L on 2025-01-11?
| 60
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_L' AND DATE(date_time) = '2025-01-11';
| 136
|
What is the total number of bad chips in lot P75418MK?
| 47
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'P75418MK';
| 143
|
What is the total number of bad marks for Station_H on 2025-01-11?
| 46
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_H' AND DATE(date_time) = '2025-01-11';
| 143
|
What is the total nummber of bad marks in lot I51353GM?
| 41
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'I51353GM';
| 160
|
What is she total number of bad chips in pot O54039WV?
| 47
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'O54039WV';
| 148
|
What is the total number of bad marks for Station_P on 2025-01-30?
| 59
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_P' AND DATE(date_time) = '2025-01-30';
| 145
|
What is the total number of bad marks for Station_P on 2025-01-11?
| 53
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_P' AND DATE(date_time) = '2025-01-11';
| 160
|
What is the tottal number of bad marks in lot D52364AA?
| 34
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'D52364AA';
| 145
|
What is the average defect rete for station CBUN?
| 32
|
SELECT AVG(def_rate) AS avg_defect_rate FROM machine WHERE proc_id = CBUN;
| 157
|
What is the total number of bad marks for Station_Z on 2025-01-30?
| 40
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_Z' AND DATE(date_time) = '2025-01-30';
| 130
|
What is the total number of bad chips in lot K80674QJ?
| 50
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'K80674QJ';
| 153
|
What is the total number of bad chips for Station_G on 2025-01-26?
| 41
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_G' AND DATE(date_time) = '2025-01-26';
| 136
|
What is the total number of bad marks in lot R28657AU?
| 34
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'R28657AU';
| 155
|
What is the total number of bad marks for Station_P on 2025-01-16?
| 43
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_P' AND DATE(date_time) = '2025-01-16';
| 131
|
What is the total number of bad marks in lot D75529QK?
| 36
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'D75529QK';
| 160
|
What is the total number of bad marks for Station_M on 2025-01-07?
| 58
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_M' AND DATE(date_time) = '2025-01-07';
| 153
|
Retrieve the top 3 lots with the highest defects from Station_Y.
| 40
|
SELECT lot_id, SUM(def_qty) AS total_defective FROM machine WHERE proc_id = 'Station_Y' GROUP BY lot_id ORDER BY total_defective DESC LIMIT 3;
| 138
|
Woat is thc total number of bad marks in lot G84291LH?
| 42
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'G84291LH';
| 149
|
What is the total number of bad marks for Station_U on 2025-01-10?
| 60
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_U' AND DATE(date_time) = '2025-01-10';
| 132
|
What is the total number of bad marks in lot D08036SB?
| 36
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'D08036SB';
| 148
|
What is the total number of bad chips for Station_A on 2025-01-09?
| 48
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_A' AND DATE(date_time) = '2025-01-09';
| 150
|
What is the total number of bad marks in lot B68295WF?
| 30
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'B68295WF';
| 157
|
How many good chips were scanned yesterday?
| 40
|
SELECT SUM(72 - def_qty) AS total_good_chips FROM machine WHERE CURDATE() - INTERVAL 1 DAY;
| 150
|
How many trays were fully functional and had no defects yesterday?
| 45
|
SELECT COUNT(*) AS fully_functional_trays FROM machine WHERE def_qty = 0 AND DATE(date_time) = CURDATE() - INTERVAL 1 DAY;
| 145
|
What is the total number of bad chips for Station_J on 2025-01-17?
| 40
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_J' AND DATE(date_time) = '2025-01-17';
| 159
|
What is the total number of good chips scanned across all trays today?
| 40
|
SELECT SUM(72 - def_qty) AS total_good_qty FROM machine WHERE CURDATE();
| 150
|
Find the average defect rate for lots scanned at Station_J in January.
| 53
|
SELECT AVG(def_rate) AS avg_def_rate FROM machine WHERE proc_id = 'Station_J' AND MONTH(date_time) = 1;
| 137
|
What is the total number of bad marks in lot S47083CT?
| 32
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'S47083CT';
| 148
|
What is the total number of bad marks for Station_Q on 2025-01-05?
| 43
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_Q' AND DATE(date_time) = '2025-01-05';
| 143
|
What is the total number of bad chips for Station_U on 2025-01-07?
| 51
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_U' AND DATE(date_time) = '2025-01-07';
| 150
|
What is the total number of bad chips in lot A20311OJ?
| 33
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'A20311OJ';
| 153
|
What is the total number of bad marks for Station_X on 2025-01-16?
| 42
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_X' AND DATE(date_time) = '2025-01-16';
| 158
|
What is the tottal number of bad marks in lot C39465HF?
| 33
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'C39465HF';
| 140
|
What is the total nummber of bad chips in lot P67487EM?
| 38
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'P67487EM';
| 144
|
What is the total number of bad marks for Station_A on 2025-01-02?
| 40
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_A' AND DATE(date_time) = '2025-01-02';
| 132
|
What is the total number of bad marks in lot P43080FC?
| 40
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'P43080FC';
| 154
|
What is the total number of gofd chipj scanned across all trays yesterday?
| 40
|
SELECT SUM(72 - def_qty) AS total_good_qty FROM machine WHERE CURDATE() - INTERVAL 1 DAY;
| 150
|
Find the total number of chwps scan todaj and liss all ljts witu defect rates above 25%g
| 60
|
SELECT COUNT(*) AS total_chips, lot_id FROM machine WHERE DATE(date_time) = CURDATE() AND def_rate > 25 GROUP BY lot_id;
| 130
|
What is the total nummber of bad chips in lot J74124YQ?
| 37
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'J74124YQ';
| 158
|
What is the total number of bad chips for Station_U on 2025-01-03?
| 48
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_U' AND DATE(date_time) = '2025-01-03';
| 130
|
What is the total number of bad marks for Station_B on 2025-01-21?
| 51
|
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_B' AND DATE(date_time) = '2025-01-21';
| 150
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.