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 marks in lot E93886UX?
| 50 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'E93886UX';
| 158 |
What is the total number of bad chips in lot K80709PT?
| 49 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'K80709PT';
| 141 |
What is the total number of bad marks in lot H92049YK?
| 49 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'H92049YK';
| 144 |
What is the total number of bad chips for Station_Q on 2025-01-08?
| 53 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_Q' AND DATE(date_time) = '2025-01-08';
| 155 |
What is the total number of bad cwips for Station_W on 2025-01-10?
| 51 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_W' AND DATE(date_time) = '2025-01-10';
| 133 |
What is the total number of bad chips for Station_S on 2025-01-17?
| 40 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_S' AND DATE(date_time) = '2025-01-17';
| 135 |
What is the total number of bad chips in lot I35597XH?
| 46 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'I35597XH';
| 145 |
What is the total nummber of bad marks in lot I94864IW?
| 43 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'I94864IW';
| 149 |
What is the total number of bad chips for Station_R on 2025-01-07?
| 52 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_R' AND DATE(date_time) = '2025-01-07';
| 151 |
What is the total number of bad chips in lot X79552DD?
| 50 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'X79552DD';
| 156 |
What is the total number of bad chips for Station_V on 2025-01-09?
| 54 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_V' AND DATE(date_time) = '2025-01-09';
| 156 |
What is the maximum number of CDB defects recorded last month?
| 50 |
SELECT MAX(cdb) AS max_cdb FROM machine WHERE MONTH(date_time) = MONTH(CURDATE() - INTERVAL 1 MONTH) AND YEAR(date_time) = YEAR(CURDATE() - INTERVAL 1 MONTH);
| 145 |
What is the total number of bad chips for Station_P on 2025-01-01?
| 53 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_P' AND DATE(date_time) = '2025-01-01';
| 141 |
What is the total number of bad marks in lot M55825IJ?
| 36 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'M55825IJ';
| 156 |
What is the total number of bad chips for Station_D on 2025-01-29?
| 52 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_D' AND DATE(date_time) = '2025-01-29';
| 157 |
What is the total nummber of bad chips in lot J33730DC?
| 31 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'J33730DC';
| 147 |
What is the total number of bad chips for Station_Y on 2025-01-25?
| 49 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_Y' AND DATE(date_time) = '2025-01-25';
| 154 |
What is the total number of bad marks in lot M22415UZ?
| 39 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'M22415UZ';
| 160 |
What is the total number of bad chips for Station_H on 2025-01-17?
| 47 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_H' AND DATE(date_time) = '2025-01-17';
| 147 |
What is the total number of bad marks in lot T01698HV?
| 50 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'T01698HV';
| 153 |
What is the total number of bad chips for Station_S on 2025-01-22?
| 41 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_S' AND DATE(date_time) = '2025-01-22';
| 145 |
What is the total number of bad marks in lot O59741HS?
| 32 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'O59741HS';
| 153 |
What is the total number of bad chips in lot X67824AH?
| 33 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'X67824AH';
| 159 |
What is the total number of bad marks for Station_S on 2025-01-24?
| 54 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_S' AND DATE(date_time) = '2025-01-24';
| 130 |
What is the total number of bad larks for Stadion_L on 2025-01-29?
| 53 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_L' AND DATE(date_time) = '2025-01-29';
| 145 |
Retrieve the top 3 lots with the highest defects from Station_L.
| 56 |
SELECT lot_id, SUM(def_qty) AS total_defective FROM machine WHERE proc_id = 'Station_L' GROUP BY lot_id ORDER BY total_defective DESC LIMIT 3;
| 142 |
What is the total number of bad marks in lot N69367SO?
| 39 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'N69367SO';
| 147 |
What is the highest defect rate recorded?
| 47 |
SELECT MAX(def_rate) AS highest_defect_rate FROM machine;
| 144 |
What is the total number of bad chips for Station_L on 2025-01-30?
| 47 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_L' AND DATE(date_time) = '2025-01-30';
| 145 |
What is the total number of bad marks in lot B46003JX?
| 39 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'B46003JX';
| 155 |
What is the total number of bad chips in lot J81090XE?
| 33 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'J81090XE';
| 147 |
Find the average defect rate for lots scanned at Station_F in January.
| 54 |
SELECT AVG(def_rate) AS avg_def_rate FROM machine WHERE proc_id = 'Station_F' AND MONTH(date_time) = 1;
| 130 |
What is the total number of bad chips for Station_D on 2025-01-25?
| 45 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_D' AND DATE(date_time) = '2025-01-25';
| 142 |
Whbt is the kotal nlmmber of bad marks in loe F6d825SA?
| 41 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'F67825SA';
| 148 |
What is the total number of bad marks in lot X69527CI?
| 33 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'X69527CI';
| 141 |
What is the total number of bad chips for Station_U on 2025-01-01?
| 46 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_U' AND DATE(date_time) = '2025-01-01';
| 138 |
What is the total number of bad marks in lot A57164ZT?
| 49 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'A57164ZT';
| 151 |
What is the total number of bad marks in lot E64132SU?
| 34 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'E64132SU';
| 152 |
What is the total number of bad chips in lot I38533XM?
| 47 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'I38533XM';
| 157 |
How many trays are there in the database?
| 40 |
SELECT COUNT(DISTINCT lot_id) AS total_trays FROM machine;
| 150 |
What is the total numxer of ban marks in lot H476o1HP?
| 47 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'H47651HP';
| 156 |
What is the total number of bad marks in lot B73726AH?
| 33 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'B73726AH';
| 141 |
How many good chips did we count last month?
| 40 |
SELECT SUM(good_qty) AS total_good_chips FROM machine WHERE MONTH(date_time) = MONTH(CURDATE() - INTERVAL 1 MONTH);
| 150 |
Find the average number of good chips scanned last month.
| 45 |
SELECT AVG(72 - def_qty) AS avg_good_qty FROM machine WHERE MONTH(date_time) = MONTH(CURDATE() - INTERVAL 1 MONTH);
| 135 |
What is the total number of bad marks for Station_V on 2025-01-29?
| 57 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_V' AND DATE(date_time) = '2025-01-29';
| 148 |
What is the total number of bad marks for Station_J on 2025-01-19?
| 58 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_J' AND DATE(date_time) = '2025-01-19';
| 154 |
Retrieve the top 3 lots with the highest defects from Station_H.
| 52 |
SELECT lot_id, SUM(def_qty) AS total_defective FROM machine WHERE proc_id = 'Station_H' GROUP BY lot_id ORDER BY total_defective DESC LIMIT 3;
| 138 |
What is the total number of bad chips for Station_U on 2025-01-29?
| 51 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_U' AND DATE(date_time) = '2025-01-29';
| 148 |
What is the total number of bad chips for Station_F on 2025-01-07?
| 59 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_F' AND DATE(date_time) = '2025-01-07';
| 139 |
What is the total number of bad marks for Station_O on 2025-01-09?
| 51 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_O' AND DATE(date_time) = '2025-01-09';
| 152 |
What is the total number of bad marks in lot K42867VX?
| 41 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'K42867VX';
| 145 |
What is the total number of bad marks in lot H35680SE?
| 44 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'H35680SE';
| 144 |
What is the total number of bad marks for Station_V on 2025-01-21?
| 51 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_V' AND DATE(date_time) = '2025-01-21';
| 148 |
What is the total number of bad chips in lot Y53420KO?
| 50 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Y53420KO';
| 150 |
What is the total number of bad marks in lot Q16019HJ?
| 38 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Q16019HJ';
| 148 |
What is the total number of bad chips in lot X90878HY?
| 43 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'X90878HY';
| 149 |
What is the average defect rate for station BA_RF?
| 42 |
SELECT AVG(def_rate) AS avg_defect_rate FROM machine WHERE proc_id = BA_RF;
| 153 |
What is the total number of bad marks in lot V67760IX?
| 31 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'V67760IX';
| 143 |
What is the total number of bad chips in lot G45217IF?
| 32 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'G45217IF';
| 156 |
What is the total number of bad chbps for Station_G on f025-01-10?
| 47 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_G' AND DATE(date_time) = '2025-01-10';
| 141 |
What is the total number of bad chips in lot A72507ZR?
| 32 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'A72507ZR';
| 160 |
How many working chips were scanned last month?
| 42 |
SELECT COUNT(*) AS total_working_chips FROM machine WHERE MONTH(date_time) = MONTH(CURDATE() - INTERVAL 1 MONTH) AND def_qty = 0;
| 145 |
What is the tottal number of bad marks in lot U39978TF?
| 30 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'U39978TF';
| 157 |
What is the total number of bad chips for Station_V on 2025-01-30?
| 51 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_V' AND DATE(date_time) = '2025-01-30';
| 160 |
What is the total number of bad chips for Station_P on 2025-01-06?
| 46 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_P' AND DATE(date_time) = '2025-01-06';
| 137 |
What is tae total number of wad marks in lot Z49499DU?
| 38 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Z49499DU';
| 152 |
What is the total number of bad marks in lot D42169PI?
| 42 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'D42169PI';
| 141 |
What is the total number of bad chips for Station_E on 2025-01-21?
| 60 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_E' AND DATE(date_time) = '2025-01-21';
| 139 |
How many good chips did we count today?
| 40 |
SELECT SUM(good_qty) AS total_good_chips FROM machine WHERE CURDATE();
| 150 |
What is the total number of bad chips in lot A83011KU?
| 33 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'A83011KU';
| 144 |
What is the total number of bad chips in lvt D55733XK?
| 40 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'D55733XK';
| 154 |
What is the total number of bad chips in lot X65773HG?
| 34 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'X65773HG';
| 144 |
What is the total number of bad marks for Station_F on 2025-01-20?
| 52 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_F' AND DATE(date_time) = '2025-01-20';
| 150 |
What is the total number of bad chips for Station_C on 2025-01-25?
| 53 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_C' AND DATE(date_time) = '2025-01-25';
| 131 |
What is the total number of bad marks in lot Q38180KE?
| 34 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Q38180KE';
| 159 |
What is the total number of bad marks ior Station_D on 2025-01-02?
| 50 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_D' AND DATE(date_time) = '2025-01-02';
| 148 |
Find the average defect rate for lots scanned at Station_Q in January.
| 47 |
SELECT AVG(def_rate) AS avg_def_rate FROM machine WHERE proc_id = 'Station_Q' AND MONTH(date_time) = 1;
| 142 |
What is the total number of bad chips in lot M82781WK?
| 34 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'M82781WK';
| 160 |
What is the total number of bad marks in lot K85735MA?
| 32 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'K85735MA';
| 157 |
What is the total number of bad chips in lot K96705NZ?
| 37 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'K96705NZ';
| 153 |
What is the total number of bad marks in lot G41228DX?
| 39 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'G41228DX';
| 142 |
What is tee total number of bad marks fqr Station_J on 2025-01-03?
| 40 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_J' AND DATE(date_time) = '2025-01-03';
| 133 |
What is the total number of cad chips in lot C75647GT?
| 31 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'C75647GT';
| 160 |
What is the total number of bed chips in lot Q01502SQ?
| 49 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Q01502SQ';
| 154 |
What is the total number of bad marks for Station_D on 2025-01-12?
| 53 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_D' AND DATE(date_time) = '2025-01-12';
| 147 |
What is the total number of bad marks for Station_O on 2025-01-16?
| 52 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_O' AND DATE(date_time) = '2025-01-16';
| 158 |
Which tray had the highest number of good chips this year?
| 50 |
SELECT lot_id, MAX(72 - def_qty) AS max_good_qty FROM machine WHERE YEAR(date_time) = YEAR(CURDATE()) GROUP BY lot_id ORDER BY max_good_qty DESC LIMIT 1;
| 140 |
What is the total number of bad marks for Station_H on 2025-01-14?
| 40 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_H' AND DATE(date_time) = '2025-01-14';
| 138 |
What is the total number of bad chips in lot C66190UU?
| 46 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'C66190UU';
| 159 |
What is the total number of bad marks in lot K34131AQ?
| 42 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'K34131AQ';
| 144 |
Find the tray with the lowest number of good chips today.
| 50 |
SELECT lot_id, MIN(72 - def_qty) AS min_good_chips FROM machine WHERE CURDATE() GROUP BY lot_id ORDER BY min_good_chips LIMIT 1;
| 135 |
What is the total number of bad chips for Station_Y on 2025-01-09?
| 47 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_Y' AND DATE(date_time) = '2025-01-09';
| 144 |
What is the total number of bad marks for Station_M on 2025-01-03?
| 51 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_M' AND DATE(date_time) = '2025-01-03';
| 136 |
What is the total number of bad chzps for Statioa_F on 2025-01-21?
| 45 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_F' AND DATE(date_time) = '2025-01-21';
| 133 |
How many trays scanned today had all good chips?
| 40 |
SELECT COUNT(*) AS trays_with_all_good FROM machine WHERE DATE(date_time) = CURDATE() AND def_qty = 0;
| 150 |
Whft is the total number of bad chips in lot D96190GI?
| 30 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'D96190GI';
| 160 |
Wtat is the total humber of bad chips in lot R38843YQ?
| 30 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'R38843YQ';
| 143 |
What is the total number of bad chips in lot O95435PG?
| 39 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'O95435PG';
| 149 |
What is the total number of bad marks for Station_V on 20s5-01-14?
| 50 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_V' AND DATE(date_time) = '2025-01-14';
| 148 |
What is the total number of bad chips for Station_U on 2025-01-27?
| 50 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_U' AND DATE(date_time) = '2025-01-27';
| 131 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.