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 H05111HD?
| 41 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'H05111HD';
| 158 |
What is the total nummber of bad chips in lot G94047ZE?
| 43 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'G94047ZE';
| 156 |
What is the total number of bad chips for Station_U on 2025-01-06?
| 43 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_U' AND DATE(date_time) = '2025-01-06';
| 142 |
What is the highest number of bad marks recorded this month?
| 50 |
SELECT MAX(def_qty) AS max_def_qty FROM machine WHERE MONTH(date_time) = MONTH(CURDATE());
| 145 |
What is the total number of bad chips for Station_E on 2025-01-29?
| 60 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_E' AND DATE(date_time) = '2025-01-29';
| 138 |
What is the total nummber of bad chips in lot B23644PD?
| 45 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'B23644PD';
| 150 |
What is the average defect rate for station SG Cleaning?
| 40 |
SELECT AVG(def_rate) AS avg_defect_rate FROM machine WHERE proc_id = SG Cleaning;
| 160 |
What is the total number of bad chips in lot A19334BZ?
| 48 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'A19334BZ';
| 147 |
How many trays had only good chips yesterday?
| 45 |
SELECT COUNT(*) AS trays_with_good_chips FROM machine WHERE DATE(date_time) = CURDATE() - INTERVAL 1 DAY AND def_qty = 0;
| 145 |
Whaa is the total number of bad marks in lot T68686EW?
| 35 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'T68686EW';
| 155 |
What is the total number of bad marks in lot E31251KP?
| 41 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'E31251KP';
| 150 |
What is the total number of bad marks in lot A45785CQ?
| 39 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'A45785CQ';
| 147 |
What is the total number of bad chips for Station_Q on 2025-01-27?
| 50 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_Q' AND DATE(date_time) = '2025-01-27';
| 149 |
What is the total number of bad ccips in wbt W95345KB?
| 46 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'W95345KB';
| 156 |
What is the total number of bad marks in lot N03013JH?
| 47 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'N03013JH';
| 143 |
What is the total number of bad chips for Station_Y on 2025-01-11?
| 47 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_Y' AND DATE(date_time) = '2025-01-11';
| 148 |
What is the total number of bad marks in lot A60630OV?
| 45 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'A60630OV';
| 145 |
Whax is the total number of bad marks in lot J88720LB?
| 36 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'J88720LB';
| 147 |
What is the tottal number of bad chips in lot S63980KB?
| 46 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'S63980KB';
| 154 |
What is the total number of bad marks in lot C05658PN?
| 46 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'C05658PN';
| 146 |
What is the total number of bad chips in lot T28812FA?
| 47 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'T28812FA';
| 158 |
What is the total nummber of bad marks in lot V34542CW?
| 46 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'V34542CW';
| 140 |
What is the total number of bad mjrks for Station_E on 2025-01-24?
| 48 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_E' AND DATE(date_time) = '2025-01-24';
| 136 |
What is the total number of bad chips in lot M50995GN?
| 39 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'M50995GN';
| 152 |
What is the total number of bad chips in lot G21600FH?
| 35 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'G21600FH';
| 155 |
What is the total number of bad chips in lot Z08465WQ?
| 40 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Z08465WQ';
| 148 |
What is thb fotal number of bad chips in lox M97064NN?
| 43 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'M97064NN';
| 155 |
Which tray had the fewest good chips scanned in the year 2025?
| 50 |
SELECT lot_id, MIN(72 - def_qty) AS min_good_qty FROM machine WHERE YEAR(date_time) = 2025 GROUP BY lot_id ORDER BY min_good_qty LIMIT 1;
| 135 |
What is the total number of bad marks in lot T98811WS?
| 40 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'T98811WS';
| 158 |
What is the total number of bad marks for Station_V on 2025-01-20?
| 50 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_V' AND DATE(date_time) = '2025-01-20';
| 143 |
What is the waximum bad marks type recorded?
| 45 |
SELECT GREATEST(MAX(bms), MAX(cdb), MAX(maker)) AS max_bad_marks FROM machine;
| 150 |
What is the total number of bad marks in lot O53816GM?
| 50 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'O53816GM';
| 151 |
What is the total number of bad marks in lot Z52112CG?
| 45 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Z52112CG';
| 145 |
What is the total number of bad marks in lot G85761CC?
| 32 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'G85761CC';
| 145 |
What is the total number of bad chips in lot R91368IQ?
| 36 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'R91368IQ';
| 143 |
What is the total number of bad marks for Station_Y on 2025-01-02?
| 40 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_Y' AND DATE(date_time) = '2025-01-02';
| 135 |
What is the total number of bad chips in lot F81747BC?
| 43 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'F81747BC';
| 141 |
What is the total number of bad marks in lot E27582HC?
| 42 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'E27582HC';
| 149 |
What is the total number of bad chips for Station_U on 2025-01-08?
| 50 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_U' AND DATE(date_time) = '2025-01-08';
| 141 |
What is the total number of bad chips in lot G02010FJ?
| 45 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'G02010FJ';
| 143 |
What is the total number of bad chips in lot I81928GE?
| 42 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'I81928GE';
| 141 |
What is the total number of bad marks for Station_W on 2025-01-02?
| 48 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_W' AND DATE(date_time) = '2025-01-02';
| 148 |
What is the total number of bad chips in lot J52100GM?
| 42 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'J52100GM';
| 151 |
What is the total number of bad marks for Station_Z on 2025-01-28?
| 44 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_Z' AND DATE(date_time) = '2025-01-28';
| 151 |
What is the total number of bad marks for Station_F on 2025-01-22?
| 49 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_F' AND DATE(date_time) = '2025-01-22';
| 137 |
What is the total number of bad marks in lot A94075JE?
| 46 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'A94075JE';
| 152 |
What is the total number of bad chips for Station_Q on 2025-01-31?
| 59 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_Q' AND DATE(date_time) = '2025-01-31';
| 158 |
What is the total number of bad marks in lot M41916JQ?
| 38 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'M41916JQ';
| 147 |
What is the total number of bad chips in lot I93724GS?
| 50 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'I93724GS';
| 150 |
What is the total number of bad chips in lot Z36756NX?
| 31 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Z36756NX';
| 145 |
What is the toyal nummber of bad marks in lot J60653HG?
| 30 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'J60653HG';
| 145 |
What is the total number of bad marks in lot V90765OO?
| 42 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'V90765OO';
| 160 |
What is the tottal number of bad marks in lot I44130VP?
| 45 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'I44130VP';
| 149 |
What is the total number of bad chips in lot C73960HZ?
| 36 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'C73960HZ';
| 151 |
What is the total number of bad chips for Stasion_P on 2025-01-14?
| 59 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_P' AND DATE(date_time) = '2025-01-14';
| 152 |
What is the total number of bad chips in lot L20905AP?
| 40 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'L20905AP';
| 150 |
What is the total number of bad chips for Station_S on 2025-01-23?
| 57 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_S' AND DATE(date_time) = '2025-01-23';
| 135 |
What is the total number of bad marks in lot A95736KH?
| 36 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'A95736KH';
| 150 |
What is the total number of bad chips for Station_U on 2025-01-26?
| 52 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_U' AND DATE(date_time) = '2025-01-26';
| 143 |
What is the total number of bad marks in lot Y12352XH?
| 36 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Y12352XH';
| 152 |
What is the total number of bad chips for Station_U on 2025-01-23?
| 54 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_U' AND DATE(date_time) = '2025-01-23';
| 146 |
What is the total number of bad marks in lot J94534BO?
| 40 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'J94534BO';
| 147 |
What is the total numier of bad marks in lot S8i971VM?
| 48 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'S85971VM';
| 152 |
What is the total number of bad chips for Station_R on 2025-01-27?
| 57 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_R' AND DATE(date_time) = '2025-01-27';
| 145 |
How many good chips were scanned this year?
| 40 |
SELECT SUM(72 - def_qty) AS total_good_chips FROM machine WHERE YEAR(date_time) = YEAR(CURDATE());
| 150 |
What is the total number of bad marks in lot B32999VD?
| 33 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'B32999VD';
| 152 |
What is the tottal number of bad chips in lot I93724GS?
| 36 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'I93724GS';
| 154 |
What is the total number of bad chips for Station_N on 2025-01-13?
| 41 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_N' AND DATE(date_time) = '2025-01-13';
| 140 |
What is the total number of bad marks for Station_F on 2025-01-29?
| 49 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_F' AND DATE(date_time) = '2025-01-29';
| 133 |
What is the total number of bad chips in lot C43699PL?
| 47 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'C43699PL';
| 140 |
What is the total number of bad chips in lot K29763IH?
| 32 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'K29763IH';
| 153 |
What is the total number of bad chips in lot O46301MD?
| 47 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'O46301MD';
| 150 |
What is the total number of bad chips in lot J03401NA?
| 47 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'J03401NA';
| 154 |
What is the total number of bad marks for Station_H on 2025-01-26?
| 40 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_H' AND DATE(date_time) = '2025-01-26';
| 143 |
What is the total number of bad marks for Station_H on 2025-01-13?
| 54 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_H' AND DATE(date_time) = '2025-01-13';
| 158 |
What is the tottal number of bad marks in lot Q74911EQ?
| 34 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Q74911EQ';
| 152 |
What is the total number of bad marks for Station_E on 2025-01-30?
| 55 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_E' AND DATE(date_time) = '2025-01-30';
| 148 |
What is the total nummber of bad chips in lot T21737EZ?
| 49 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'T21737EZ';
| 160 |
What is the total number of bad chips in lot C37878JT?
| 40 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'C37878JT';
| 154 |
What is the total number of bad chips for Station_R on 2025-01-14?
| 58 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_R' AND DATE(date_time) = '2025-01-14';
| 158 |
What is the total number of bad marks for Station_K on 2025-01-22?
| 46 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_K' AND DATE(date_time) = '2025-01-22';
| 157 |
What is the total number of bad chips for Station_K on 2025-01-15?
| 59 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_K' AND DATE(date_time) = '2025-01-15';
| 130 |
What is the total number of bad chips in lot N14437GE?
| 32 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'N14437GE';
| 150 |
What is the total number of bad chips for Station_J on 2025-01-02?
| 45 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_J' AND DATE(date_time) = '2025-01-02';
| 146 |
What is the total number of bad marks for Station_Q on 2025-01-22?
| 51 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_Q' AND DATE(date_time) = '2025-01-22';
| 160 |
What is the total number of had chips in let Y64693YA?
| 49 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Y64693YA';
| 142 |
What is the total number of bad chips for Station_B on 2025-01-26?
| 55 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_B' AND DATE(date_time) = '2025-01-26';
| 158 |
What is the total number of bad marks in lot M49014CD?
| 31 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'M49014CD';
| 154 |
What is the total number of bad marks for Station_N on 2025-01-14?
| 59 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_N' AND DATE(date_time) = '2025-01-14';
| 131 |
Whan is the total number of bad marks in lot A89232PO?
| 40 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'A89232PO';
| 141 |
What is the total number of bad chips in lwt N34953GJ?
| 44 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'N34953GJ';
| 160 |
What is the total number of bad chips in lot Y84985ZI?
| 45 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Y84985ZI';
| 157 |
What is the total number of bad marks in lot P25496GJ?
| 40 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'P25496GJ';
| 159 |
What is the total number of bad chips in lot U31422JD?
| 47 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'U31422JD';
| 144 |
What is the total number of bad chips in lot T21737EZ?
| 49 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'T21737EZ';
| 159 |
What is the total number of bad marks in lot N73262RH?
| 49 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'N73262RH';
| 155 |
What is the total number of bad mkrks in lot U66533JB?
| 41 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'U66533JB';
| 143 |
What is the total number of bad chips in lot F89899FI?
| 50 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'F89899FI';
| 146 |
What is the total number of bad chips in lot I49961VD?
| 36 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'I49961VD';
| 146 |
What is the total number of bad marks in lot E87917XK?
| 50 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'E87917XK';
| 160 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.