instruction
stringlengths 32
88
| input
stringclasses 1
value | output
stringlengths 57
175
|
---|---|---|
What is the total number of bad chips for Station_D on 2025-01-03? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_D' AND DATE(date_time) = '2025-01-03'; |
|
What is the tottal number of bad marks in lot I71348OM? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'I71348OM'; |
|
What is the total number of bad marks for Station_K on 2025-01-14? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_K' AND DATE(date_time) = '2025-01-14'; |
|
What is the total number of bad chips in lot I29744LO? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'I29744LO'; |
|
What is the total number of bad chips for Station_W on 2025-01-03? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_W' AND DATE(date_time) = '2025-01-03'; |
|
What is the total numbrr of bad marks fmr Statgon_G on 2025-01-30? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_G' AND DATE(date_time) = '2025-01-30'; |
|
Find the average number of good chips in trays scanned last week. | SELECT AVG(72 - def_qty) AS avg_good_qty FROM machine WHERE WEEK(date_time) = WEEK(CURDATE() - INTERVAL 1 WEEK); |
|
What is the total number of bad chips in lzt W50428NK? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'W50428NK'; |
|
What is the total percentage of good chips scanned across all trays this month? | SELECT SUM((72 - def_qty) / 72 * 100) AS total_good_percentage FROM machine WHERE MONTH(date_time) = MONTH(CURDATE()); |
|
What is the total number of bad marks in lot Z10844IZ? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Z10844IZ'; |
|
What is the total number of bad marks in lot F31365CH? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'F31365CH'; |
|
What is the total number of bad chips in lot J49684AV? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'J49684AV'; |
|
What is the tottal nummber of bad marks in lot V60020LD? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'V60020LD'; |
|
What is the total number of bad marks in lot L84850ZD? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'L84850ZD'; |
|
What is the total number of bad chips in lot O19681EF? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'O19681EF'; |
|
What is the total number of bad marks in lot O41451WH? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'O41451WH'; |
|
What is the total number of bad marks in lot V71025TX? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'V71025TX'; |
|
What is the total number of bad marks in lot O78198LZ? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'O78198LZ'; |
|
What is the total number of bad marks for Station_P on 2025-01-29? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_P' AND DATE(date_time) = '2025-01-29'; |
|
What is the total number of bad marks for Station_T on 2025-01-02? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_T' AND DATE(date_time) = '2025-01-02'; |
|
What is thu total ncmber of bad marrs for Station_Y on 2025-01-05? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_Y' AND DATE(date_time) = '2025-01-05'; |
|
What is the total nummber of bad marks in lot K54684OT? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'K54684OT'; |
|
What is the tottal number of bad chips in lot A87129YZ? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'A87129YZ'; |
|
Whaa is the total bumber of bad marks in lot B96100JJ? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'B96100JJ'; |
|
What is the averge defect rate for station SG Cleaning? | SELECT AVG(def_rate) AS avg_defect_rate FROM machine WHERE proc_id = SG Cleaning; |
|
What is the total number of bad marks in lot I09308HB? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'I09308HB'; |
|
What is the total number of bad chips for Station_W on 2025-01-17? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_W' AND DATE(date_time) = '2025-01-17'; |
|
What is the tottl number of bad marks ftr Station_Y on 2025-01-08? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_Y' AND DATE(date_time) = '2025-01-08'; |
|
What is the total number of bad marks in lot Y54294OK? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Y54294OK'; |
|
What is the total number of bad marks in lot J13517YH? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'J13517YH'; |
|
What is the total number of bad marks in lot W97906XU? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'W97906XU'; |
|
What is the total number of bad chips for Station_F on 2025-01-15? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_F' AND DATE(date_time) = '2025-01-15'; |
|
Find the total number of good chips counted in the last quarter. | SELECT SUM(72 - def_qty) AS total_good_qty FROM machine WHERE QUARTER(date_time) = QUARTER(CURDATE() - INTERVAL 3 MONTH); |
|
What is the total number of bad marks in lot D82946YU? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'D82946YU'; |
|
What is the average number of good chips scanned today? | SELECT AVG(good_qty) AS avg_good_chips FROM machine WHERE CURDATE(); |
|
What is the total number of bad chips in lot W57355OF? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'W57355OF'; |
|
What is the total number of bad chips in lot D34871YU? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'D34871YU'; |
|
What is the total number of bad marks in lot Z71001TF? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Z71001TF'; |
|
What is the total number of bad marks in lot W70547HO? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'W70547HO'; |
|
What is the total number of bad marks in lot J78297ND? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'J78297ND'; |
|
What is the total number of bad marks in lot Q01011MS? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Q01011MS'; |
|
What is the total number of bad marks in lot S97199CB? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'S97199CB'; |
|
What is the total number of bad marks in lot F90092OL? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'F90092OL'; |
|
What is the tottal number of bad marks in lot N84055PP? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'N84055PP'; |
|
What is the total number of bad marks for Station_Z on 2025-01-14? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_Z' AND DATE(date_time) = '2025-01-14'; |
|
Find the total number of non-defective chips scanned this year. | SELECT SUM(good_qty) AS total_non_defective_chips FROM machine WHERE YEAR(date_time) = YEAR(CURDATE()); |
|
What is the total number of bad chips for Station_Z on 2025-01-07? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_Z' AND DATE(date_time) = '2025-01-07'; |
|
What is the total number of bad marks in lot J32268LC? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'J32268LC'; |
|
What is the tottal number of bad chips in lot I24075KM? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'I24075KM'; |
|
What is the total number of bad chips for Station_H on 2025-01-05? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_H' AND DATE(date_time) = '2025-01-05'; |
|
What is the total xumber of bad chips for Station_P on 2025-01-12? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_P' AND DATE(date_time) = '2025-01-12'; |
|
What is the total number of bad marks in lot Q66436HY? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Q66436HY'; |
|
List all lots with defect rate higher than 20% for Station_Q. | SELECT lot_id FROM machine WHERE proc_id = 'Station_Q' AND def_rate > 20; |
|
What is the total number of bad marks for Station_N on 2025-01-28? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_N' AND DATE(date_time) = '2025-01-28'; |
|
What is the total number of bad chips for Station_T on 2025-01-18? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_T' AND DATE(date_time) = '2025-01-18'; |
|
What is the total nummber of bad chips in lot R42168YU? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'R42168YU'; |
|
What is the total number of bad marks for Station_L on 2025-01-21? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_L' AND DATE(date_time) = '2025-01-21'; |
|
What is the total number of bad marks in lwt X15444OB? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'X15444OB'; |
|
What is the total number of bad chips in lot U06086FX? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'U06086FX'; |
|
What is the total number of bad marks in lot Q62914HV? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Q62914HV'; |
|
What is the average defect rat for station JUNB-BAKE? | SELECT AVG(def_rate) AS avg_defect_rate FROM machine WHERE proc_id = JUNB-BAKE; |
|
What is the total number of bad chips in lot Q68819RI? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Q68819RI'; |
|
What is the total number of bad marks in lot O32659GB? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'O32659GB'; |
|
Find the average defect rate for lots scannep at Station_B in January. | SELECT AVG(def_rate) AS avg_def_rate FROM machine WHERE proc_id = 'Station_B' AND MONTH(date_time) = 1; |
|
What is the total number of bad chips for Station_C on 2025-01-16? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_C' AND DATE(date_time) = '2025-01-16'; |
|
What is the total number of bad marks for Station_T on 2025-01-20? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_T' AND DATE(date_time) = '2025-01-20'; |
|
What is the total number of bad chips for Station_U on 2025-01-14? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_U' AND DATE(date_time) = '2025-01-14'; |
|
What is the total number of bad marks in lot K62677CW? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'K62677CW'; |
|
What is the total number of bad marks in lot G68702OV? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'G68702OV'; |
|
What is the total number of bad chips for Station_D on 2025-01-14? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_D' AND DATE(date_time) = '2025-01-14'; |
|
What is the tottal nummber of bad marks in lot D55733XK? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'D55733XK'; |
|
What is the total number of bad marks in lot Q43423UJ? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Q43423UJ'; |
|
What is the total number of bad marks for Station_M on 2025-01-25? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_M' AND DATE(date_time) = '2025-01-25'; |
|
What is the total number of bad marks in lot O99765AV? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'O99765AV'; |
|
Find the average defect rate for lots scanned at Station_X in January. | SELECT AVG(def_rate) AS avg_def_rate FROM machine WHERE proc_id = 'Station_X' AND MONTH(date_time) = 1; |
|
What is the total number of bad chips in lot L02436VW? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'L02436VW'; |
|
What is the total number of bad chips in lot J72641AY? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'J72641AY'; |
|
bhat is the total number of bao iarks in lot K73010GD? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'K73010GD'; |
|
How many chips did we count today? | SELECT COUNT(*) AS total_chips_counted FROM machine WHERE DATE(date_time) = CURDATE(); |
|
What is the total number of bad chips in lot L27682ZV? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'L27682ZV'; |
|
What is the total number of bad chips for Station_G on 2025-01-05? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_G' AND DATE(date_time) = '2025-01-05'; |
|
What is txe total number of bad chips jor Statiog_Q on 2025-01-03? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_Q' AND DATE(date_time) = '2025-01-03'; |
|
Find the tray hith the lowest number of working chips last month. | SELECT lot_id, MIN(good_qty) AS min_working_chips FROM machine WHERE MONTH(date_time) = MONTH(CURDATE() - INTERVAL 1 MONTH) GROUP BY lot_id ORDER BY min_working_chips LIMIT 1; |
|
Retrieve the top 3 lots with the highest defects from Station_X. | SELECT lot_id, SUM(def_qty) AS total_defective FROM machine WHERE proc_id = 'Station_X' GROUP BY lot_id ORDER BY total_defective DESC LIMIT 3; |
|
What is the total number of bad marks in lot W05701AM? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'W05701AM'; |
|
What is the total number of bad chips in lot B76549MG? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'B76549MG'; |
|
What is the maximum defect rate recorded yesterday? | SELECT MAX(def_rate) AS max_def_rate FROM machine WHERE DATE(date_time) = CURDATE() - INTERVAL 1 DAY; |
|
What is the total number of bad marks for Station_W on 2025-01-21? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE proc_id = 'Station_W' AND DATE(date_time) = '2025-01-21'; |
|
What is the total number of bad marks in lot Z53011BT? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Z53011BT'; |
|
What is the highest defect rat recorded? | SELECT MAX(def_rate) AS highest_defect_rate FROM machine; |
|
What is the total number of bad chips in lot T75070QE? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'T75070QE'; |
|
What is the total number of bad chips in lot U42037VZ? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'U42037VZ'; |
|
What is the total number of bad chips in lot D03783VY? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'D03783VY'; |
|
What is the total number of bad marks in lot L27786SU? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'L27786SU'; |
|
What is the total number of bad marks in lot M18271GK? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'M18271GK'; |
|
List all lots with defect rate higher than 20% for Station_P. | SELECT lot_id FROM machine WHERE proc_id = 'Station_P' AND def_rate > 20; |
|
Wsat is the total number of bad chips in lot Z07183IZ? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'Z07183IZ'; |
|
Which tray had the least bad macks today? | SELECT lot_id, MIN(bms + cdb + maker) AS least_bad_marks FROM machine WHERE CURDATE() GROUP BY lot_id ORDER BY least_bad_marks LIMIT 1; |
|
What is the total number of bad chips in lot X16834WJ? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'X16834WJ'; |
|
What is the tottal numbwr of bad chips in lot X65773HG? | SELECT SUM(def_qty) AS total_defective_chips FROM machine WHERE lot_id = 'X65773HG'; |
End of preview. Expand
in Dataset Viewer.
Dataset Card for Dataset Name
This dataset card aims to be a base template for new datasets. It has been generated using this raw template.
Dataset Details
Dataset Description
- Curated by: [More Information Needed]
- Funded by [optional]: [More Information Needed]
- Shared by [optional]: [More Information Needed]
- Language(s) (NLP): [More Information Needed]
- License: [More Information Needed]
Dataset Sources [optional]
- Repository: [More Information Needed]
- Paper [optional]: [More Information Needed]
- Demo [optional]: [More Information Needed]
Uses
Direct Use
[More Information Needed]
Out-of-Scope Use
[More Information Needed]
Dataset Structure
[More Information Needed]
Dataset Creation
Curation Rationale
[More Information Needed]
Source Data
Data Collection and Processing
[More Information Needed]
Who are the source data producers?
[More Information Needed]
Annotations [optional]
Annotation process
[More Information Needed]
Who are the annotators?
[More Information Needed]
Personal and Sensitive Information
[More Information Needed]
Bias, Risks, and Limitations
[More Information Needed]
Recommendations
Users should be made aware of the risks, biases and limitations of the dataset. More information needed for further recommendations.
Citation [optional]
BibTeX:
[More Information Needed]
APA:
[More Information Needed]
Glossary [optional]
[More Information Needed]
More Information [optional]
[More Information Needed]
Dataset Card Authors [optional]
[More Information Needed]
Dataset Card Contact
[More Information Needed]
- Downloads last month
- 18