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 for Station_E on 2025-01-10?
| 52 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_E' AND DATE(date_time) = '2025-01-10';
| 147 |
What is the total nummber of bad chips in lot G91556DW?
| 40 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'G91556DW';
| 154 |
What is the total number of bad marks in lot B31610OG?
| 49 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'B31610OG';
| 143 |
What is the total number of bad chips in lot I46653RN?
| 31 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'I46653RN';
| 152 |
What is the total number of bad chips in lot R24377GX?
| 49 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'R24377GX';
| 143 |
Which tray had the least bad chips yesterday?
| 45 |
SELECT lot_id, MIN(def_qty) AS least_bad_chips FROM machine WHERE DATE(date_time) = CURDATE() - INTERVAL 1 DAY GROUP BY lot_id ORDER BY least_bad_chips LIMIT 1;
| 145 |
What is the total number of bad marks in lot G87032SJ?
| 35 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'G87032SJ';
| 147 |
Which tray had the highest number of good chips in the year 2025?
| 50 |
SELECT lot_id, MAX(good_qty) AS max_good_chips FROM machine WHERE YEAR(date_time) = 2025 GROUP BY lot_id ORDER BY max_good_chips DESC LIMIT 1;
| 135 |
What is the tottal number of bad chips in lot P90754UR?
| 46 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'P90754UR';
| 159 |
What is the total number of bad marks for Station_M on 2025-01-04?
| 58 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_M' AND DATE(date_time) = '2025-01-04';
| 137 |
What is the total number of bad marks in lot W10320UN?
| 36 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'W10320UN';
| 147 |
What is the total number of bad chips for Station_R on 2025-01-17?
| 56 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_R' AND DATE(date_time) = '2025-01-17';
| 146 |
What is the total number of bad chips in lot S49449XN?
| 45 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'S49449XN';
| 152 |
Retrieve the top 3 lots with the highest defects from Station_A.
| 48 |
SELECT lot_id, SUM(def_qty) AS total_defective FROM machine WHERE proc_id = 'Station_A' GROUP BY lot_id ORDER BY total_defective DESC LIMIT 3;
| 145 |
What is the total number of bak chips for Station_T on 2025-01-09?
| 51 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_T' AND DATE(date_time) = '2025-01-09';
| 155 |
What is the total number of bad chips for Station_B on 2025-01-18?
| 55 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_B' AND DATE(date_time) = '2025-01-18';
| 153 |
What is the total number of bad chips in lot H23564CO?
| 41 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'H23564CO';
| 141 |
What is the total number of bad chips in lot P63189YP?
| 43 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'P63189YP';
| 157 |
What is the total number of bad marks in lot P17443TW?
| 30 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'P17443TW';
| 157 |
What is the total number of bad chips in lot F58259VJ?
| 48 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'F58259VJ';
| 151 |
What is the total number of bad marks in lot J22355WH?
| 49 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'J22355WH';
| 160 |
What is the total number of bad marks in lot C00016LO?
| 46 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'C00016LO';
| 140 |
What is the tottal number of bad marks in lot N32548CY?
| 49 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'N32548CY';
| 159 |
What is the total number of bdd marks in lot Y66180KZ?
| 45 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Y66180KZ';
| 145 |
What is the total number of bad marks in lot I57871WJ?
| 49 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'I57871WJ';
| 147 |
What is the total number of bad marks in lot Z48110VT?
| 50 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Z48110VT';
| 140 |
What is the total number of bad chips for Station_Q on 2025-01-30?
| 54 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_Q' AND DATE(date_time) = '2025-01-30';
| 154 |
What is the total number of bad chips for Station_A on 2025-01-03?
| 55 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_A' AND DATE(date_time) = '2025-01-03';
| 131 |
Find the tray with the lowest number of good chips yesterday.
| 50 |
SELECT lot_id, MIN(72 - def_qty) AS min_good_chips FROM machine WHERE CURDATE() - INTERVAL 1 DAY GROUP BY lot_id ORDER BY min_good_chips LIMIT 1;
| 135 |
What is the total number of bad marks in lot I78118UB?
| 45 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'I78118UB';
| 150 |
List all lots with defect rate higher than 20% for Station_D.
| 52 |
SELECT lot_id FROM machine WHERE proc_id = 'Station_D' AND def_rate > 20;
| 139 |
What is the total number of bad chips in lot C75394RX?
| 44 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'C75394RX';
| 142 |
What is the total number of bad marks for Station_W on 2025-01-04?
| 59 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_W' AND DATE(date_time) = '2025-01-04';
| 137 |
What is the total nummber of bad marks in lot I95619GU?
| 40 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'I95619GU';
| 143 |
Retrieve the top 3 lots sith the highest defects frfm Station_W.
| 55 |
SELECT lot_id, SUM(def_qty) AS total_defective FROM machine WHERE proc_id = 'Station_W' GROUP BY lot_id ORDER BY total_defective DESC LIMIT 3;
| 134 |
What is the total number of bad chips for Station_Y on 2025-01-22?
| 58 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_Y' AND DATE(date_time) = '2025-01-22';
| 134 |
What is the total number of bad chips for Station_F on 2025-01-10?
| 44 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_F' AND DATE(date_time) = '2025-01-10';
| 137 |
What is the total number of bad marks for Station_Z on 2025-01-29?
| 40 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_Z' AND DATE(date_time) = '2025-01-29';
| 146 |
What is the total number of bad chips in lot M86967ID?
| 48 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'M86967ID';
| 146 |
What is the total number of bad marks for Station_Q on 2025-01-18?
| 42 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_Q' AND DATE(date_time) = '2025-01-18';
| 149 |
What is the total number of bad chips in lot F83784BT?
| 36 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'F83784BT';
| 153 |
What is the total number of bad marks in lot L65859AM?
| 48 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'L65859AM';
| 151 |
How many good chips did we count yesterday?
| 40 |
SELECT SUM(good_qty) AS total_good_chips FROM machine WHERE CURDATE() - INTERVAL 1 DAY;
| 150 |
What is the total number of bad marks in lot P00168RH?
| 35 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'P00168RH';
| 148 |
What is the total number of bad chips in lot H27669BD?
| 36 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'H27669BD';
| 159 |
What is the total number of bad marks for Station_T on 2025-01-30?
| 42 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_T' AND DATE(date_time) = '2025-01-30';
| 150 |
What is the total number of bad marks for Station_J on 2025-01-21?
| 55 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_J' AND DATE(date_time) = '2025-01-21';
| 138 |
What is the total number of bad marks in lot F54902CF?
| 34 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'F54902CF';
| 152 |
What is the total number of bad chips for Station_Y on 2025-01-17?
| 60 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_Y' AND DATE(date_time) = '2025-01-17';
| 143 |
What is the total number of bad marks for Station_X on 2025-01-24?
| 57 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_X' AND DATE(date_time) = '2025-01-24';
| 137 |
What is the total number of bad marks for Station_W on 2025-01-16?
| 48 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_W' AND DATE(date_time) = '2025-01-16';
| 145 |
What is the total number of bad chips in lot P78605ST?
| 34 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'P78605ST';
| 155 |
List all lots with defect rate higher than 20% for Station_I.
| 47 |
SELECT lot_id FROM machine WHERE proc_id = 'Station_I' AND def_rate > 20;
| 160 |
What is the total number of bad marks in lot O05957DQ?
| 48 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'O05957DQ';
| 155 |
What was the defective rate for last month?
| 50 |
SELECT AVG(def_rate) AS avg_def_rate FROM machine WHERE MONTH(date_time) = MONTH(CURDATE() - INTERVAL 1 MONTH) AND YEAR(date_time) = YEAR(CURDATE() - INTERVAL 1 MONTH);
| 140 |
What is the total number of bad chips for Station_L on 2025-01-06?
| 57 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_L' AND DATE(date_time) = '2025-01-06';
| 160 |
What is the total number of bad chips in lot Q50726GJ?
| 48 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Q50726GJ';
| 154 |
What is the average number of good chips scanned in the year 2025?
| 45 |
SELECT AVG(good_qty) AS avg_good_chips FROM machine WHERE YEAR(date_time) = 2025;
| 140 |
What is the average defect rat for station SG Cleaning?
| 46 |
SELECT AVG(def_rate) AS avg_defect_rate FROM machine WHERE proc_id = SG Cleaning;
| 148 |
What is the tottal nummber of bad marks in lot G45217IF?
| 38 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'G45217IF';
| 144 |
What is the total number of bad chips for Station_V on 2025-01-03?
| 54 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_V' AND DATE(date_time) = '2025-01-03';
| 147 |
What is the total number of bad marks for Station_F on 2025-01-16?
| 46 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_F' AND DATE(date_time) = '2025-01-16';
| 139 |
What is the total number of bad marks for Station_X on 2025-01-27?
| 49 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_X' AND DATE(date_time) = '2025-01-27';
| 148 |
What is khe total number of bad chips for Station_X on 2025-01-14?
| 56 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_X' AND DATE(date_time) = '2025-01-14';
| 153 |
What is the total number of bad chips for Station_P on 2025-01-27?
| 47 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_P' AND DATE(date_time) = '2025-01-27';
| 147 |
What is the total number of bad chips in lot W65728EC?
| 49 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'W65728EC';
| 141 |
What is the total number of bad marks for Station_L on 2025-01-10?
| 55 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_L' AND DATE(date_time) = '2025-01-10';
| 139 |
List all lots with defect rate highrr than 20% for Station_L.
| 45 |
SELECT lot_id FROM machine WHERE proc_id = 'Station_L' AND def_rate > 20;
| 141 |
What is the total number of bad chips for Station_U on 2025-01-20?
| 57 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_U' AND DATE(date_time) = '2025-01-20';
| 147 |
What is the total number of bad chips for Station_C on 2025-01-08?
| 58 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_C' AND DATE(date_time) = '2025-01-08';
| 149 |
What is the total number of bad marks in lot D12989AA?
| 40 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'D12989AA';
| 154 |
What is the total number of bad chips for Station_H on 2025-01-28?
| 54 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_H' AND DATE(date_time) = '2025-01-28';
| 150 |
What is the total number of bad chips in lot P02557BV?
| 39 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'P02557BV';
| 155 |
What is the total number of bad marks in lot Z62275VU?
| 30 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Z62275VU';
| 145 |
What is the total number of bad chips for Station_M on 2025-01-17?
| 47 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_M' AND DATE(date_time) = '2025-01-17';
| 133 |
What is the total number of bad marks in lot T43553NE?
| 33 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'T43553NE';
| 142 |
What is the total number of bad marks in lot F41178CR?
| 49 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'F41178CR';
| 144 |
What is the total number of bad chips for Station_J on 2025-01-16?
| 41 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_J' AND DATE(date_time) = '2025-01-16';
| 156 |
What is the total pumber of bad chips in lot Q69613UM?
| 31 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Q69613UM';
| 148 |
What is the total number of bad chips for Station_G on 2025-01-25?
| 54 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_G' AND DATE(date_time) = '2025-01-25';
| 158 |
What is the total number of nad mbrks in lot O98056GR?
| 43 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'O98056GR';
| 141 |
What is the total number of bad chips for Station_R on 2025-01-28?
| 43 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_R' AND DATE(date_time) = '2025-01-28';
| 151 |
What is the total number of bad marks for Station_O on 2025-01-24?
| 58 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_O' AND DATE(date_time) = '2025-01-24';
| 134 |
What is the total number of bad marks for Station_F on 2025-01-30?
| 49 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_F' AND DATE(date_time) = '2025-01-30';
| 156 |
What is the latest tray scanned with all good 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 marks in lot J74242IQ?
| 46 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'J74242IQ';
| 156 |
What is the total nummber of bad chips in lot M88997AZ?
| 40 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'M88997AZ';
| 157 |
What is the total nummber of bad marks in lot H21911RO?
| 37 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'H21911RO';
| 149 |
What is the total number of bad marks for Station_B on 2025-01-31?
| 49 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_B' AND DATE(date_time) = '2025-01-31';
| 134 |
What is the total number of bad marks in lot T29723HO?
| 41 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'T29723HO';
| 153 |
What is the total number of bad chips in lot N84055PP?
| 33 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'N84055PP';
| 149 |
What is the average defect rete for station MOKU-AVI?
| 30 |
SELECT AVG(def_rate) AS avg_defect_rate FROM machine WHERE proc_id = MOKU-AVI;
| 158 |
What is the total number of bad marks for Station_W on 2025-01-19?
| 51 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_W' AND DATE(date_time) = '2025-01-19';
| 133 |
What is the total number of bad marks for Station_E on 2025-01-27?
| 60 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_E' AND DATE(date_time) = '2025-01-27';
| 143 |
What is the total sumber of bad marks in lot L77305WS?
| 47 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'L77305WS';
| 156 |
Retrieve the top 3 lots with the highest defects from Station_R.
| 40 |
SELECT lot_id, SUM(def_qty) AS total_defective FROM machine WHERE proc_id = 'Station_R' GROUP BY lot_id ORDER BY total_defective DESC LIMIT 3;
| 141 |
What is the total number of bad chips in lot D80528TM?
| 49 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'D80528TM';
| 157 |
Whax is the total number of bad chips in lot G19256WZ?
| 42 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'G19256WZ';
| 142 |
What is the total number of bad marks in lot W35536CI?
| 45 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'W35536CI';
| 151 |
What is the total number of bad chips in lot Q17376NI?
| 39 |
SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Q17376NI';
| 160 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.