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 Z60834Ll?
| 31 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Z60834LI';
| 160 |
What is the total number of bad marks in lot Y13781ES?
| 42 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Y13781ES';
| 147 |
What is the total number of bad marks in got H57038FZ?
| 32 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'H57038FZ';
| 157 |
What is the total number of bad chips in lot H60974IU?
| 50 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'H60974IU';
| 141 |
What is the total number of bad chipx in lot W35975WS?
| 34 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'W35975WS';
| 152 |
What is the total number of bad chips in lot M88997AZ?
| 32 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'M88997AZ';
| 158 |
What is the total number of bad chips in lot C75739ZM?
| 36 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'C75739ZM';
| 154 |
What is the total number of bad chips for Station_P on 2025-01-07?
| 40 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_P' AND DATE(date_time) = '2025-01-07';
| 151 |
What is the total number of bad marks for Station_S on 2025-01-31?
| 52 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_S' AND DATE(date_time) = '2025-01-31';
| 131 |
What is the total number of bad marks for Station_V on 2025-01-23?
| 59 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_V' AND DATE(date_time) = '2025-01-23';
| 155 |
What is the total number of bad chips in lot R52962NY?
| 37 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'R52962NY';
| 155 |
List all trays scanned yesterday with only good chips.
| 45 |
SELECT lot_id FROM machine WHERE DATE(date_time) = CURDATE() - INTERVAL 1 DAY AND def_qty = 0;
| 145 |
What is the total number of bad chips in lot M82248IN?
| 45 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'M82248IN';
| 143 |
What is the total number of bad chips in lot X79460DZ?
| 45 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'X79460DZ';
| 157 |
What is the total number of bad marks in lot J29819AJ?
| 50 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'J29819AJ';
| 154 |
What is the total number of bad chips in lot O52317MJ?
| 48 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'O52317MJ';
| 146 |
What is the total number of bad marks in lot C13963OA?
| 45 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'C13963OA';
| 160 |
What is the total number of bad chips in lot I44130VP?
| 37 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'I44130VP';
| 144 |
What is the total number of bad marks for Station_Q on 2025-01-01?
| 43 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_Q' AND DATE(date_time) = '2025-01-01';
| 148 |
What is the total number of bad marks in lot F17103HL?
| 35 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'F17103HL';
| 160 |
What is tve total number of bad chips for Station_H on 2025-01-04?
| 57 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_H' AND DATE(date_time) = '2025-01-04';
| 141 |
What is the total number of bad marks for Station_D on 2025-01-27?
| 54 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_D' AND DATE(date_time) = '2025-01-27';
| 151 |
What is the total number of bad chips in lot G91556DW?
| 38 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'G91556DW';
| 155 |
What is the tottal number of bad marks in lot O19681EF?
| 35 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'O19681EF';
| 142 |
What is the total number of bad chips in lot Q29281CE?
| 41 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Q29281CE';
| 144 |
Retrieve the top 3 lots with the highest defects from Station_V.
| 49 |
SELECT lot_id, SUM(def_qty) AS total_defective FROM machine WHERE proc_id = 'Station_V' GROUP BY lot_id ORDER BY total_defective DESC LIMIT 3;
| 130 |
What is the total number of bad chips for Station_E on 2025-01-02?
| 45 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_E' AND DATE(date_time) = '2025-01-02';
| 145 |
What is the total number of bad marks in lot G75572FA?
| 49 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'G75572FA';
| 143 |
What is the total number of bad marks for Station_O on 2025-01-04?
| 52 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_O' AND DATE(date_time) = '2025-01-04';
| 134 |
What is the total number of bad marks for Station_R on 2025-01-22?
| 51 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_R' AND DATE(date_time) = '2025-01-22';
| 153 |
What is the total number of bad chips for Station_L on 2025-01-22?
| 42 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_L' AND DATE(date_time) = '2025-01-22';
| 130 |
Find the average defect rate for lots scanned at Station_E in January.
| 48 |
SELECT AVG(def_rate) AS avg_def_rate FROM machine WHERE proc_id = 'Station_E' AND MONTH(date_time) = 1;
| 130 |
What is the total number of bad marks in lot S58590ZM?
| 46 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'S58590ZM';
| 144 |
What is the total number of bad chips for Station_K on 2025-01-21?
| 45 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_K' AND DATE(date_time) = '2025-01-21';
| 150 |
What is the average defect rete for station JUNB-BAKE?
| 40 |
SELECT AVG(def_rate) AS avg_defect_rate FROM machine WHERE proc_id = JUNB-BAKE;
| 147 |
What is the total number of bad chips for Station_Y on 2025-01-10?
| 59 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_Y' AND DATE(date_time) = '2025-01-10';
| 135 |
What is the total number of bad marks in lot P57724RB?
| 49 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'P57724RB';
| 149 |
What is the total nummber of bad marks in lot O13687MZ?
| 47 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'O13687MZ';
| 143 |
What is the total number of bad chips in lot D70384QE?
| 44 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'D70384QE';
| 155 |
What is the total number of bad marks for Station_Z on 2025-01-26?
| 52 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_Z' AND DATE(date_time) = '2025-01-26';
| 137 |
What is the latesm tray scanned?
| 40 |
SELECT lot_id FROM machine ORDER BY date_time DESC LIMIT 1;
| 150 |
What is the tottal number of bad marks in lot I69186FU?
| 40 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'I69186FU';
| 158 |
What is the total number of bad marks for Station_A on 2025-01-05?
| 48 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_A' AND DATE(date_time) = '2025-01-05';
| 143 |
Wxat is the total nummber of bad marks in lot C91935QY?
| 43 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'C91935QY';
| 159 |
What is the averge defect rate for station CBUN?
| 32 |
SELECT AVG(def_rate) AS avg_defect_rate FROM machine WHERE proc_id = CBUN;
| 155 |
What is the total number of bad chips in lot T03198MB?
| 46 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'T03198MB';
| 141 |
What is the total number of bad chips in lot L38240LT?
| 48 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'L38240LT';
| 157 |
What is the total number of bad chips in lot P78841UF?
| 49 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'P78841UF';
| 150 |
What is the total number of bad chips in lot O37385IX?
| 36 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'O37385IX';
| 141 |
What is the maximum BMS count recorded today?
| 45 |
SELECT MAX(bms) AS max_bms FROM machine WHERE DATE(date_time) = CURDATE();
| 140 |
What is the total number of bad chips in lot M34989LT?
| 40 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'M34989LT';
| 144 |
What is the total number of bad marks for Station_I on 2025-01-09?
| 48 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_I' AND DATE(date_time) = '2025-01-09';
| 136 |
What is the total number of good chips scanned across all trays last month?
| 40 |
SELECT SUM(72 - def_qty) AS total_good_qty FROM machine WHERE MONTH(date_time) = MONTH(CURDATE() - INTERVAL 1 MONTH);
| 150 |
List all lots with defect rate higher than 20% for Station_T.
| 55 |
SELECT lot_id FROM machine WHERE proc_id = 'Station_T' AND def_rate > 20;
| 132 |
What is the total number of bad chips for Station_M on 2025-01-13?
| 40 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_M' AND DATE(date_time) = '2025-01-13';
| 146 |
What is the total nummber of bad marks in lot P93482EZ?
| 32 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'P93482EZ';
| 151 |
List all lots with defect rate higher than 20% for Station_W.
| 48 |
SELECT lot_id FROM machine WHERE proc_id = 'Station_W' AND def_rate > 20;
| 158 |
What is tre total number of bad chips in lot T44087CD?
| 31 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'T44087CD';
| 151 |
What is the total number of bad marks in lot P13946YI?
| 34 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'P13946YI';
| 158 |
What is the total numzer of bad marks for Station_Q on 2025-01-14?
| 44 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_Q' AND DATE(date_time) = '2025-01-14';
| 160 |
What is the total number of bad marks for Station_P on 2025-01-09?
| 51 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_P' AND DATE(date_time) = '2025-01-09';
| 147 |
What is the total number of bad marks in lot R91655YE?
| 35 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'R91655YE';
| 143 |
What is the total number of bad chips in lot P81256IK?
| 34 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'P81256IK';
| 149 |
What is the total number of bad marks in lot D71969VI?
| 45 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'D71969VI';
| 144 |
What is the tottal number of bad chips in lot T43553NE?
| 34 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'T43553NE';
| 153 |
What is the total nummber of bad marks in lot O44198KA?
| 31 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'O44198KA';
| 144 |
What is the total number of bad marks for Station_T on 2025-01-04?
| 52 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_T' AND DATE(date_time) = '2025-01-04';
| 133 |
What is the total number of bad marks in lot O67592PQ?
| 42 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'O67592PQ';
| 143 |
What is the total number of bad marks in lot N21633RO?
| 42 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'N21633RO';
| 146 |
What is mhe total number of bad chips for Station_P on 2025-01-17?
| 49 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_P' AND DATE(date_time) = '2025-01-17';
| 136 |
What is the total number of bad chips for Station_Q on 2025-01-11?
| 54 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_Q' AND DATE(date_time) = '2025-01-11';
| 149 |
What is the total nummber of bad marks in lot G80083FR?
| 38 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'G80083FR';
| 150 |
What is the total number of bad chips in lot Y83902KX?
| 36 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Y83902KX';
| 156 |
What is the total number of bad chips for Station_V on 2025-01-11?
| 48 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_V' AND DATE(date_time) = '2025-01-11';
| 160 |
What is the total number of bad marks in lot E26878SF?
| 47 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'E26878SF';
| 147 |
What is the average defect rqte for station JUNB-BAKE?
| 44 |
SELECT AVG(def_rate) AS avg_defect_rate FROM machine WHERE proc_id = JUNB-BAKE;
| 150 |
What is the total number of bad chips in lot A10249NZ?
| 37 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'A10249NZ';
| 147 |
What is the total number of bad marks in lot G54895PN?
| 45 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'G54895PN';
| 150 |
What is the total number of bad marks in lot S35872AL?
| 50 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'S35872AL';
| 157 |
What is the total number of bad marks for Station_R on 2025-01-08?
| 51 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_R' AND DATE(date_time) = '2025-01-08';
| 139 |
What is the total numbcr of bad marks in lot R65727TV?
| 34 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'R65727TV';
| 150 |
List all lots with defect rate higher than 20% for Station_C.
| 46 |
SELECT lot_id FROM machine WHERE proc_id = 'Station_C' AND def_rate > 20;
| 136 |
What is the latest tray scanned with the highest percentage of good chips?
| 45 |
SELECT lot_id, MAX((72 - def_qty) / 72 * 100) AS max_good_percentage FROM machine ORDER BY date_time DESC LIMIT 1;
| 140 |
What is the total number of bad chips for Station_W on 2025-01-24?
| 48 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_W' AND DATE(date_time) = '2025-01-24';
| 137 |
What is the total number of bad chips for Station_A on 2025-01-28?
| 49 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_A' AND DATE(date_time) = '2025-01-28';
| 131 |
What is the total number of bad marks in lot A70656NS?
| 40 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'A70656NS';
| 159 |
What is the total number of bad chips in lot I65531FR?
| 45 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'I65531FR';
| 157 |
What is the latest tray with all working chips?
| 40 |
SELECT lot_id FROM machine WHERE def_qty = 0 ORDER BY date_time DESC LIMIT 1;
| 150 |
What is the total number of bad chips in lot S95648AE?
| 34 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'S95648AE';
| 160 |
What is the total number of bad marks for Station_Q on 2025-01-09?
| 54 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_Q' AND DATE(date_time) = '2025-01-09';
| 135 |
Which tray had the least bad marks yesterday?
| 45 |
SELECT lot_id, MIN(bms + cdb + maker) AS least_bad_marks FROM machine WHERE CURDATE() - INTERVAL 1 DAY GROUP BY lot_id ORDER BY least_bad_marks LIMIT 1;
| 140 |
Find the average defect rate for lots scanned at Station_Y in January.
| 59 |
SELECT AVG(def_rate) AS avg_def_rate FROM machine WHERE proc_id = 'Station_Y' AND MONTH(date_time) = 1;
| 148 |
Retrieve the top 3 lots with the highest defects from Station_M.
| 48 |
SELECT lot_id, SUM(def_qty) AS total_defective FROM machine WHERE proc_id = 'Station_M' GROUP BY lot_id ORDER BY total_defective DESC LIMIT 3;
| 153 |
What is the total number of bad chips for Station_P on 2025-01-22?
| 42 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_P' AND DATE(date_time) = '2025-01-22';
| 154 |
What is the total number of bad chips for Station_I on 2025-01-18?
| 57 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_I' AND DATE(date_time) = '2025-01-18';
| 150 |
What is the total number of bad marks for Station_M on 2025-01-29?
| 57 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_M' AND DATE(date_time) = '2025-01-29';
| 143 |
What is the total number of bad chips in lot Q78110CL?
| 43 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Q78110CL';
| 149 |
What is the total number of bad marks in lot V02008OU?
| 39 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'V02008OU';
| 150 |
What is the total nummber of bad chips in lot G02010FJ?
| 36 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'G02010FJ';
| 152 |
What is the total number of bad marks in lot Y77508NQ?
| 50 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Y77508NQ';
| 154 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.