wasoncesimple commited on
Commit
11db163
·
verified ·
1 Parent(s): 0cb62cb

Upload llamaTrain.json

Browse files
Files changed (1) hide show
  1. llamaTrain.json +483 -0
llamaTrain.json ADDED
@@ -0,0 +1,483 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "instruction": "The database contains a 'transactionalplms.trip' table with columns like 'id', 'status', 'gateOut', and 'vehicleNumber'. The task is to retrieve the latest trip information for a vehicle number. Limit the results to the most recent trip.",
4
+ "input": "Where is vehicle JH11AG0663?",
5
+ "output": "SELECT id AS trip_id, dinumber,status, gateOut FROM transactionalplms.trip WHERE vehicleNumber = 'JH11AG0663' ORDER BY gateOut DESC LIMIT 1;"
6
+ },
7
+ {
8
+ "instruction": "The 'transactionalplms.trip' table has a 'mapPlantStageLocation' column that tracks where vehicles are in the plant. The task is to count vehicles that are in the 'YARD-IN' stage, indicating they are at the plant.",
9
+ "input": "How many vehicles are currently at our plant?",
10
+ "output": "SELECT COUNT(*) AS vehicle_count FROM transactionalplms.trip WHERE mapPlantStageLocation = 'YARD-IN';"
11
+ },
12
+ {
13
+ "instruction": "The 'transactionalplms.trip' table contains a 'packingOut' column that indicates the timestamp when a vehicle completes tareweight. The task is to retrieve the latest tareweight completion time for a vehicle.",
14
+ "input": "When did vehicle JH11AG0663 complete tareweight?",
15
+ "output": "SELECT packingOut FROM transactionalplms.trip WHERE vehicleNumber = 'JH11AG0663' ORDER BY packingOut DESC LIMIT 1;"
16
+ },
17
+ {
18
+ "instruction": "The 'transactionalplms.trip' table contains a 'driverId' column that tracks the driver assigned to a vehicle. The task is to retrieve the driver ID for the latest trip of the vehicle.",
19
+ "input": "Who is the assigned driver for vehicle JH09AR8268?",
20
+ "output": "SELECT driverId FROM transactionalplms.trip WHERE vehicleNumber = 'JH09AR8268' ORDER BY gateIn DESC LIMIT 1;"
21
+ },
22
+ {
23
+ "instruction": "The 'transactionalplms.trip' table has a 'gateIn' column that records the time a vehicle enters the plant. The task is to retrieve the gate-in time for the given vehicle number.",
24
+ "input": "When did vehicle UP32AA1010 enter the plant?",
25
+ "output": "SELECT gateIn FROM transactionalplms.trip WHERE vehicleNumber = 'UP32AA1010' ORDER BY gateIn DESC LIMIT 1;"
26
+ },
27
+ {
28
+ "instruction": "The 'transactionalplms.trip' table contains a 'materialType_code' column that tracks the type of goods loaded in a vehicle. The task is to retrieve the material type for the latest trip of the vehicle.",
29
+ "input": "What goods are loaded in vehicle JH09AR8268?",
30
+ "output": "SELECT materialType_code FROM transactionalplms.trip WHERE vehicleNumber = 'JH09AR8268' ORDER BY gateIn DESC LIMIT 1;"
31
+ },
32
+ {
33
+ "instruction": "The 'transactionalplms.trip' table has a 'gateOut' column that records the time a vehicle leaves the plant. The task is to retrieve the gate-out time for the last vehicle that unloaded at the plant, filtered by the 'GATE-OUT' location.",
34
+ "input": "When did the last vehicle unload at the plant?",
35
+ "output": "SELECT gateOut FROM transactionalplms.trip WHERE mapPlantStageLocation = 'GATE-OUT' ORDER BY gateOut DESC LIMIT 1;"
36
+ },
37
+ {
38
+ "instruction": "The 'transactionalplms.trip' table has an 'id' column, which is the trip ID. The task is to retrieve the trip ID for the latest trip of the given vehicle.",
39
+ "input": "What is the trip ID for vehicle JH09AR8268?",
40
+ "output": "SELECT tripId FROM transactionalplms.trip WHERE vehicleNumber = 'JH09AR8268' ORDER BY gateIn DESC LIMIT 1;"
41
+ },
42
+ {
43
+ "instruction": "The 'transactionalplms.trip' table contains an 'id' column for the trip ID, a 'status' column indicating the trip status, and a 'gateOut' column recording when the trip is completed. The task is to check if a trip is completed by verifying the status and whether the 'gateOut' field is populated.",
44
+ "input": "Is trip TRIP9876 completed?",
45
+ "output": "SELECT gateOut FROM transactionalplms.trip WHERE id = '20240418175619192' AND status = 'C' LIMIT 1;"
46
+ },
47
+ {
48
+ "instruction": "The 'transactionalplms.trip' table contains a 'packingIn' column, which records when a vehicle started loading or unloading. The task is to retrieve the start time of packing for a given vehicle number.",
49
+ "input": "When did vehicle JH11AG0663 start packing?",
50
+ "output": "SELECT packingIn FROM transactionalplms.trip WHERE vehicleNumber = 'JH11AG0663' ORDER BY packingIn DESC LIMIT 1;"
51
+ },
52
+ {
53
+ "instruction": "The 'transactionalplms.trip' table contains a 'mapPlantStageLocation' column that tracks the current stage of the vehicle in the plant. The task is to retrieve the current location of the given vehicle number.",
54
+ "input": "Where is vehicle JH11AG0663?",
55
+ "output": "SELECT mapPlantStageLocation FROM transactionalplms.trip WHERE vehicleNumber = 'JH11AG0663' ORDER BY gateIn DESC LIMIT 1;"
56
+ },
57
+ {
58
+ "instruction": "The 'transactionalplms.trip' table contains a 'gateIn' and 'gateOut' column. The task is to retrieve both the entry and exit times for a specific vehicle.",
59
+ "input": "When did vehicle JH09AR8268 enter and exit the plant?",
60
+ "output": "SELECT gateIn, gateOut FROM transactionalplms.trip WHERE vehicleNumber = 'UP32AA1010' ORDER BY gateIn DESC LIMIT 1;"
61
+ },
62
+ {
63
+ "instruction": "The task is to check if vehicle JH10CS206 has completed the 'YARD-IN' process, which is tracked in the 'mapPlantStageLocation' column.",
64
+ "input": "Has vehicle JH10CS206 completed the Yard-In process?",
65
+ "output": "SELECT mapPlantStageLocation FROM transactionalplms.trip WHERE vehicleNumber = 'JH10CS206' AND mapPlantStageLocation = 'YARD-IN' LIMIT 1;"
66
+ },
67
+ {
68
+ "instruction": "The task is to count the number of trips created today.",
69
+ "input": "How many trips are being made today?",
70
+ "output": "SELECT COUNT(*) AS trip_count FROM transactionalplms.trip WHERE DATE(gateIn) = CURRENT_DATE;"
71
+ },
72
+ {
73
+ "instruction": "The task is to retrieve the current stage for the vehicle with number JH10CS206.",
74
+ "input": "In which stage is vehicle number JH10CS206?",
75
+ "output": "SELECT mapPlantStageLocation FROM transactionalplms.trip WHERE vehicleNumber = 'JH10CS206' ORDER BY gateIn DESC LIMIT 1;"
76
+ },
77
+ {
78
+ "instruction": "The task is to retrieve the tareweight time for vehicle MH34BG1275.",
79
+ "input": "TareWeight time for this vehicle MH34BG1275?",
80
+ "output": "SELECT packingOut FROM transactionalplms.trip WHERE vehicleNumber = 'MH34BG1275' ORDER BY packingOut DESC LIMIT 1;"
81
+ },
82
+ {
83
+ "instruction": "The task is to calculate the time difference between entry and exit for vehicle TS01UC241.",
84
+ "input": "How much time did TS01UC241 take from Entry to Exit?",
85
+ "output": "SELECT TIMESTAMPDIFF(MINUTE, gateIn, gateOut) AS time_taken FROM transactionalplms.trip WHERE vehicleNumber = 'TS01UC241' ORDER BY gateIn DESC LIMIT 1;"
86
+ },
87
+ {
88
+ "instruction": "The task is to count the stages completed by vehicle UP53ET7162.",
89
+ "input": "How many stages are completed by UP53ET7162?",
90
+ "output": "SELECT COUNT(DISTINCT mapPlantStageLocation) AS stages_completed FROM transactionalplms.trip WHERE vehicleNumber = 'UP53ET7162';"
91
+ },
92
+ {
93
+ "instruction": "The task is to retrieve the material description for material code 'COMP'.",
94
+ "input": "Tell me which material has this code COMP?",
95
+ "output": "SELECT description FROM transactionalplms.material WHERE code = 'COMP';"
96
+ },
97
+ {
98
+ "instruction": "The task is to retrieve the material type for the latest trip of vehicle JH02P2241.",
99
+ "input": "What material type is this vehicle number carrying JH02P2241?",
100
+ "output": "SELECT materialType_code FROM transactionalplms.trip WHERE vehicleNumber = 'JH02P2241' ORDER BY gateIn DESC LIMIT 1;"
101
+ },
102
+ {
103
+ "instruction": "The task is to count the number of vehicles currently at the N205 stage.",
104
+ "input": "How many vehicles are currently at N205?",
105
+ "output": "SELECT COUNT(*) AS vehicle_count FROM transactionalplms.trip WHERE mapPlantStageLocation = 'N205';"
106
+ },
107
+ {
108
+ "instruction": "The task is to count vehicles currently in the 'GATE-OUT' stage.",
109
+ "input": "How many vehicles are in the gate out stage?",
110
+ "output": "SELECT COUNT(*) AS vehicle_count FROM transactionalplms.trip WHERE mapPlantStageLocation = 'GATE-OUT';"
111
+ },
112
+ {
113
+ "instruction": "The task is to calculate the average time vehicles spend in the 'YARD-IN' stage.",
114
+ "input": "How much time on average does a vehicle take in Yard-IN?",
115
+ "output": "SELECT AVG(TIMESTAMPDIFF(MINUTE, yardIn, yardOut)) AS avg_time FROM transactionalplms.trip WHERE mapPlantStageLocation = 'YARD-IN';"
116
+ },
117
+ {
118
+ "instruction": "The task is to retrieve the tareweight time and date for vehicles JH10CD0283 and MH33T4122.",
119
+ "input": "Tareweight time and date of JH10CD0283, MH33T4122?",
120
+ "output": "SELECT vehicleNumber, packingOut FROM transactionalplms.trip WHERE vehicleNumber IN ('JH10CD0283', 'MH33T4122') ORDER BY packingOut DESC;"
121
+ },
122
+ {
123
+ "instruction": "The task is to count the number of vehicles aborted today.",
124
+ "input": "How many vehicles have been aborted today?",
125
+ "output": "SELECT COUNT(*) AS aborted_count FROM transactionalplms.trip WHERE status = 'A' AND DATE(gateIn) = CURRENT_DATE;"
126
+ },
127
+ {
128
+ "instruction": "The task is to find the vehicle number associated with a specific trip ID.",
129
+ "input": "I am not able to find the vehicle number related to this 2024042514482296?",
130
+ "output": "SELECT vehicleNumber FROM transactionalplms.trip WHERE id = '2024042514482296';"
131
+ },
132
+ {
133
+ "instruction": "The task is to count stages completed by vehicle MH02ER9382.",
134
+ "input": "How many stages has been covered by this MH02ER9382?",
135
+ "output": "SELECT COUNT(DISTINCT mapPlantStageLocation) AS stages_covered FROM transactionalplms.trip WHERE vehicleNumber = 'MH02ER9382';"
136
+ },
137
+ {
138
+ "instruction": "The task is to find the sequence number for vehicle jh10cr1855.",
139
+ "input": "In which sequence number is this vehicle jh10cr1855?",
140
+ "output": "SELECT sequence_number FROM transactionalplms.trip WHERE vehicleNumber = 'jh10cr1855' ORDER BY gateIn DESC LIMIT 1;"
141
+ },
142
+ {
143
+ "instruction": "The task is to calculate the average time a vehicle takes between Packing IN and Packing Out.",
144
+ "input": "On average, how much time does a vehicle take between Packing IN and Packing Out?",
145
+ "output": "SELECT AVG(TIMESTAMPDIFF(MINUTE, packingIn, packingOut)) AS avg_packing_time FROM transactionalplms.trip WHERE packingIn IS NOT NULL AND packingOut IS NOT NULL;"
146
+ },
147
+ {
148
+ "instruction": "The task is to count trips with 'S' creation type and 'C' status.",
149
+ "input": "How many vehicles have trip creation S with C status?",
150
+ "output": "SELECT COUNT(*) AS trip_count FROM transactionalplms.trip WHERE creationType = 'S' AND status = 'C';"
151
+ },
152
+ {
153
+ "instruction": "The task is to count trips with no issues.",
154
+ "input": "How many trips have been done by vehicles without any issues?",
155
+ "output": "SELECT COUNT(*) AS trip_count FROM transactionalplms.trip WHERE status = 'C';"
156
+ },
157
+ {
158
+ "instruction": "The task is to count vehicles with the 'PSC' material type today.",
159
+ "input": "How many vehicles have this material PSC today?",
160
+ "output": "SELECT COUNT(*) AS vehicle_count FROM transactionalplms.trip WHERE materialType_code = 'PSC' AND DATE(gateIn) = CURRENT_DATE;"
161
+ },
162
+ {
163
+ "instruction": "The task is to find the trip ID associated with a given serial number.",
164
+ "input": "Which trip is associated with Serial number 559?",
165
+ "output": "SELECT id FROM transactionalplms.trip WHERE serial_number = '559';"
166
+ },
167
+ {
168
+ "instruction": "The task is to count vehicles associated with the company IN20.",
169
+ "input": "How many vehicles are associated with this company IN20 and provide count too?",
170
+ "output": "SELECT COUNT(*) AS vehicle_count FROM transactionalplms.trip WHERE company_code = 'IN20';"
171
+ },
172
+ {
173
+ "instruction": "The task is to count vehicles handling both COMP and PPC materials.",
174
+ "input": "How many vehicles are handling COMP and PPC?",
175
+ "output": "SELECT COUNT(DISTINCT vehicleNumber) AS vehicle_count FROM transactionalplms.trip WHERE materialType_code IN ('COMP', 'PPC');"
176
+ },
177
+ {
178
+ "instruction": "The task is to find the vehicle that took the maximum time from entry to exit today.",
179
+ "input": "Which vehicle took the maximum time from entry to exit today?",
180
+ "output": "SELECT vehicleNumber, TIMESTAMPDIFF(MINUTE, gateIn, gateOut) AS time_taken FROM transactionalplms.trip WHERE DATE(gateIn) = CURRENT_DATE ORDER BY time_taken DESC LIMIT 1;"
181
+ },
182
+ {
183
+ "instruction": "The task is to find the vehicle details and stage count for vehicle ID 1005.",
184
+ "input": "Which vehicle is with this ID 1005 and how many stages are being done by this vehicle?",
185
+ "output": "SELECT vehicleNumber, COUNT(DISTINCT mapPlantStageLocation) AS stages_completed FROM transactionalplms.trip WHERE id = '1005';"
186
+ },
187
+ {
188
+ "instruction": "The task is to find the current location of vehicle MH04DS5386.",
189
+ "input": "Where is this MH04DS5386 right now?",
190
+ "output": "SELECT mapPlantStageLocation FROM transactionalplms.trip WHERE vehicleNumber = 'MH04DS5386' ORDER BY gateIn DESC LIMIT 1;"
191
+ },
192
+ {
193
+ "instruction": "The task is to find the vehicle with the minimum time to complete stages today.",
194
+ "input": "Which vehicle has the minimum time to complete the stages today?",
195
+ "output": "SELECT vehicleNumber, TIMESTAMPDIFF(MINUTE, gateIn, gateOut) AS time_taken FROM transactionalplms.trip WHERE DATE(gateIn) = CURRENT_DATE AND gateOut IS NOT NULL ORDER BY time_taken ASC LIMIT 1;"
196
+ },
197
+ {
198
+ "instruction": "The task is to count the goods being handled by company IN10.",
199
+ "input": "How many goods are being handled by IN10?",
200
+ "output": "SELECT COUNT(*) AS goods_count FROM transactionalplms.trip WHERE company_code = 'IN10';"
201
+ },
202
+ {
203
+ "instruction": "The task is to count the number of vehicles present in the plant until 3 PM today.",
204
+ "input": "How many vehicles were there till 3pm?",
205
+ "output": "SELECT COUNT(*) AS vehicle_count FROM transactionalplms.trip WHERE DATE(gateIn) = CURRENT_DATE AND TIME(gateIn) <= '15:00:00';"
206
+ },
207
+ {
208
+ "instruction": "The task is to find the vehicle with the maximum time to complete stages today.",
209
+ "input": "Which vehicle has the maximum time to complete the stages today?",
210
+ "output": "SELECT vehicleNumber, TIMESTAMPDIFF(MINUTE, gateIn, gateOut) AS time_taken FROM transactionalplms.trip WHERE DATE(gateIn) = CURRENT_DATE ORDER BY time_taken DESC LIMIT 1;"
211
+ },
212
+ {
213
+ "instruction": "The task is to count the total number of vehicles in each stage right now.",
214
+ "input": "Can you show me the total count of vehicles in each stage right now?",
215
+ "output": "SELECT mapPlantStageLocation, COUNT(*) AS vehicle_count FROM transactionalplms.trip WHERE DATE(gateIn) = CURRENT_DATE GROUP BY mapPlantStageLocation;"
216
+ },
217
+ {
218
+ "instruction": "The task is to count the number of vehicles currently in the Packing-Out stage.",
219
+ "input": "How many vehicles are currently in the Packing-Out stage?",
220
+ "output": "SELECT COUNT(*) AS vehicle_count FROM transactionalplms.trip WHERE mapPlantStageLocation = 'Packing-Out';"
221
+ },
222
+ {
223
+ "instruction": "The task is to count the number of vehicles currently between Yard-Out and Gate-Out.",
224
+ "input": "How many vehicles are currently in between Yard-Out and Gate-Out right now?",
225
+ "output": "SELECT COUNT(*) AS vehicle_count FROM transactionalplms.trip WHERE mapPlantStageLocation IN ('Yard-Out', 'Gate-Out');"
226
+ },
227
+ {
228
+ "instruction": "The task is to count the number of vehicles with status 'C'.",
229
+ "input": "How many vehicles got status C?",
230
+ "output": "SELECT COUNT(*) AS vehicle_count FROM transactionalplms.trip WHERE status = 'C';"
231
+ },
232
+ {
233
+ "instruction": "The task is to count the stages completed by vehicle ID 764.",
234
+ "input": "How many stages are being completed by this ID 764?",
235
+ "output": "SELECT COUNT(DISTINCT mapPlantStageLocation) AS stages_completed FROM transactionalplms.trip WHERE id = '764';"
236
+ },
237
+ {
238
+ "instruction": "The task is to count the number of vehicles that completed the Packing-In stage.",
239
+ "input": "How many vehicles completed the packing-in stage?",
240
+ "output": "SELECT COUNT(*) AS completed_count FROM transactionalplms.trip WHERE mapPlantStageLocation = 'Packing-In' AND packingIn IS NOT NULL;"
241
+ },
242
+ {
243
+ "instruction": "The task is to find when vehicle MH40CD7766 completed the Yard-IN stage.",
244
+ "input": "When did vehicle MH40CD7766 complete the YardIN?",
245
+ "output": "SELECT yardIn FROM transactionalplms.trip WHERE vehicleNumber = 'MH40CD7766' ORDER BY yardIn DESC LIMIT 1;"
246
+ },
247
+ {
248
+ "instruction": "The task is to count the number of vehicles that exited the plant today.",
249
+ "input": "How many vehicles have exited the plant today?",
250
+ "output": "SELECT COUNT(*) AS exited_count FROM transactionalplms.trip WHERE DATE(gateOut) = CURRENT_DATE;"
251
+ },
252
+ {
253
+ "instruction": "The task is to count the number of vehicles currently active within the plant.",
254
+ "input": "What is the total number of vehicles currently active within the plant?",
255
+ "output": "SELECT COUNT(*) AS active_vehicle_count FROM transactionalplms.trip WHERE gateOut IS NULL;"
256
+ },
257
+ {
258
+ "instruction": "The task is to find the first vehicle that entered the plant today.",
259
+ "input": "Which vehicle entered the plant first today?",
260
+ "output": "SELECT vehicleNumber FROM transactionalplms.trip WHERE DATE(gateIn) = CURRENT_DATE ORDER BY gateIn ASC LIMIT 1;"
261
+ },
262
+ {
263
+ "instruction": "The task is to count the number of vehicles in the process of loading material type 'COMP'.",
264
+ "input": "How many vehicles are in the process of being loaded with material type COMP?",
265
+ "output": "SELECT COUNT(*) AS loading_count FROM transactionalplms.trip WHERE materialType_code = 'COMP' AND mapPlantStageLocation = 'Loading';"
266
+ },
267
+ {
268
+ "instruction": "The task is to check if vehicle BR23A2793 has completed the Gate-Out stage.",
269
+ "input": "Has vehicle BR23A2793 successfully completed the Gate-Out stage?",
270
+ "output": "SELECT gateOut FROM transactionalplms.trip WHERE vehicleNumber = 'BR23A2793' AND gateOut IS NOT NULL LIMIT 1;"
271
+ },
272
+ {
273
+ "instruction": "The task is to count the vehicles present last week.",
274
+ "input": "How many vehicles were there last week?",
275
+ "output": "SELECT COUNT(*) AS vehicle_count FROM transactionalplms.trip WHERE WEEK(gateIn) = WEEK(CURRENT_DATE) - 1;"
276
+ },
277
+ {
278
+ "instruction": "The task is to find the date with the maximum number of vehicles in the plant.",
279
+ "input": "On which date were the maximum number of vehicles present in the plant?",
280
+ "output": "SELECT DATE(gateIn) AS date, COUNT(*) AS vehicle_count FROM transactionalplms.trip GROUP BY DATE(gateIn) ORDER BY vehicle_count DESC LIMIT 1;"
281
+ },
282
+ {
283
+
284
+ "instruction": "The task is to find the number of trips created for vehicles with a specific company code today.",
285
+
286
+ "input": "How many trips have been created today for company code IN20?",
287
+
288
+ "output": "SELECT COUNT(*) AS trip_count FROM transactionalplms.trip WHERE company_code = 'IN20' AND DATE(gateIn) = CURRENT_DATE;"
289
+
290
+ },
291
+
292
+ {
293
+
294
+ "instruction": "The task is to identify vehicles that have both Yard-IN and Yard-Out stages completed today.",
295
+
296
+ "input": "Which vehicles have completed both Yard-IN and Yard-Out today?",
297
+
298
+ "output": "SELECT DISTINCT vehicleNumber FROM transactionalplms.trip WHERE DATE(yardIn) = CURRENT_DATE AND DATE(yardOut) = CURRENT_DATE;"
299
+
300
+ },
301
+
302
+ {
303
+
304
+ "instruction": "The task is to find the average number of stages completed by vehicles today.",
305
+
306
+ "input": "What is the average number of stages completed by vehicles today?",
307
+
308
+ "output": "SELECT AVG(stage_count) AS avg_stages FROM (SELECT vehicleNumber, COUNT(DISTINCT mapPlantStageLocation) AS stage_count FROM transactionalplms.trip WHERE DATE(gateIn) = CURRENT_DATE GROUP BY vehicleNumber) AS stage_data;"
309
+
310
+ },
311
+
312
+ {
313
+
314
+ "instruction": "The task is to find the vehicles with more than 3 distinct stages completed today.",
315
+
316
+ "input": "Which vehicles completed more than 3 stages today?",
317
+
318
+ "output": "SELECT vehicleNumber FROM transactionalplms.trip WHERE DATE(gateIn) = CURRENT_DATE GROUP BY vehicleNumber HAVING COUNT(DISTINCT mapPlantStageLocation) > 3;"
319
+
320
+ },
321
+
322
+ {
323
+
324
+ "instruction": "The task is to retrieve the vehicle numbers of those that have completed packing today but not exited the plant.",
325
+
326
+ "input": "Which vehicles completed packing but are still in the plant today?",
327
+
328
+ "output": "SELECT vehicleNumber FROM transactionalplms.trip WHERE DATE(packingOut) = CURRENT_DATE AND gateOut IS NULL;"
329
+
330
+ },
331
+
332
+ {
333
+
334
+ "instruction": "The task is to identify vehicles that entered the plant before 9 AM today.",
335
+
336
+ "input": "Which vehicles entered the plant before 9 AM today?",
337
+
338
+ "output": "SELECT vehicleNumber FROM transactionalplms.trip WHERE DATE(gateIn) = CURRENT_DATE AND TIME(gateIn) < '09:00:00';"
339
+
340
+ },
341
+
342
+ {
343
+
344
+ "instruction": "The task is to count vehicles that have aborted their trips today.",
345
+
346
+ "input": "How many vehicles aborted their trips today?",
347
+
348
+ "output": "SELECT COUNT(*) AS aborted_count FROM transactionalplms.trip WHERE status = 'A' AND DATE(gateIn) = CURRENT_DATE;"
349
+
350
+ },
351
+
352
+ {
353
+
354
+ "instruction": "The task is to retrieve the vehicle numbers with the longest stay in the Yard-IN stage today.",
355
+
356
+ "input": "Which vehicles have spent the longest time in the Yard-IN stage today?",
357
+
358
+ "output": "SELECT vehicleNumber, TIMESTAMPDIFF(MINUTE, yardIn, yardOut) AS time_in_yard FROM transactionalplms.trip WHERE DATE(yardIn) = CURRENT_DATE ORDER BY time_in_yard DESC LIMIT 1;"
359
+
360
+ },
361
+
362
+ {
363
+
364
+ "instruction": "The task is to find the total number of trips completed by vehicles with material type 'CEMENT'.",
365
+
366
+ "input": "How many trips have vehicles carrying material type 'CEMENT' completed?",
367
+
368
+ "output": "SELECT COUNT(*) AS trip_count FROM transactionalplms.trip WHERE materialType_code = 'CEMENT' AND status = 'C';"
369
+
370
+ },
371
+
372
+ {
373
+
374
+ "instruction": "The task is to calculate the percentage of vehicles currently active in the plant.",
375
+
376
+ "input": "What percentage of vehicles are currently active in the plant?",
377
+
378
+ "output": "SELECT (COUNT(*) * 100 / (SELECT COUNT(*) FROM transactionalplms.trip WHERE DATE(gateIn) = CURRENT_DATE)) AS active_percentage FROM transactionalplms.trip WHERE gateOut IS NULL AND DATE(gateIn) = CURRENT_DATE;"
379
+
380
+ },
381
+
382
+ {
383
+
384
+ "instruction": "The task is to list vehicle numbers and their total number of trips this month.",
385
+
386
+ "input": "How many trips has each vehicle made this month?",
387
+
388
+ "output": "SELECT vehicleNumber, COUNT(*) AS trip_count FROM transactionalplms.trip WHERE MONTH(gateIn) = MONTH(CURRENT_DATE) AND YEAR(gateIn) = YEAR(CURRENT_DATE) GROUP BY vehicleNumber;"
389
+
390
+ },
391
+
392
+ {
393
+
394
+ "instruction": "The task is to find the vehicles with material type 'PPC' that have not exited the plant.",
395
+
396
+ "input": "Which vehicles carrying material type 'PPC' have not exited the plant?",
397
+
398
+ "output": "SELECT vehicleNumber FROM transactionalplms.trip WHERE materialType_code = 'PPC' AND gateOut IS NULL;"
399
+
400
+ },
401
+
402
+ {
403
+
404
+ "instruction": "The task is to find the vehicle with the highest number of trips recorded in the database.",
405
+
406
+ "input": "Which vehicle has the highest number of trips recorded?",
407
+
408
+ "output": "SELECT vehicleNumber, COUNT(*) AS trip_count FROM transactionalplms.trip GROUP BY vehicleNumber ORDER BY trip_count DESC LIMIT 1;"
409
+
410
+ },
411
+
412
+ {
413
+
414
+ "instruction": "The task is to retrieve vehicles with more than one trip created today.",
415
+
416
+ "input": "Which vehicles have more than one trip created today?",
417
+
418
+ "output": "SELECT vehicleNumber FROM transactionalplms.trip WHERE DATE(gateIn) = CURRENT_DATE GROUP BY vehicleNumber HAVING COUNT(*) > 1;"
419
+
420
+ },
421
+
422
+ {
423
+
424
+ "instruction": "The task is to calculate the total number of vehicles that completed Yard-Out but have not yet reached Gate-Out today.",
425
+
426
+ "input": "How many vehicles completed Yard-Out but are yet to complete Gate-Out today?",
427
+
428
+ "output": "SELECT COUNT(*) AS vehicle_count FROM transactionalplms.trip WHERE DATE(yardOut) = CURRENT_DATE AND gateOut IS NULL;"
429
+
430
+ },
431
+
432
+ {
433
+
434
+ "instruction": "The task is to find the vehicle with the earliest gate-out time today.",
435
+
436
+ "input": "Which vehicle exited the plant first today?",
437
+
438
+ "output": "SELECT vehicleNumber FROM transactionalplms.trip WHERE DATE(gateOut) = CURRENT_DATE ORDER BY gateOut ASC LIMIT 1;"
439
+
440
+ },
441
+
442
+ {
443
+
444
+ "instruction": "The task is to identify vehicles that have skipped the Yard-IN stage but completed Yard-Out.",
445
+
446
+ "input": "Which vehicles skipped the Yard-IN stage but completed Yard-Out?",
447
+
448
+ "output": "SELECT vehicleNumber FROM transactionalplms.trip WHERE yardIn IS NULL AND yardOut IS NOT NULL;"
449
+
450
+ },
451
+
452
+ {
453
+
454
+ "instruction": "The task is to find the average time vehicles spend between Yard-IN and Gate-Out stages.",
455
+
456
+ "input": "What is the average time vehicles spend between Yard-IN and Gate-Out stages?",
457
+
458
+ "output": "SELECT AVG(TIMESTAMPDIFF(MINUTE, yardIn, gateOut)) AS avg_time FROM transactionalplms.trip WHERE yardIn IS NOT NULL AND gateOut IS NOT NULL;"
459
+
460
+ },
461
+
462
+ {
463
+
464
+ "instruction": "The task is to find the vehicle that spent the least amount of time in the plant today.",
465
+
466
+ "input": "Which vehicle spent the least time in the plant today?",
467
+
468
+ "output": "SELECT vehicleNumber, TIMESTAMPDIFF(MINUTE, gateIn, gateOut) AS time_spent FROM transactionalplms.trip WHERE DATE(gateIn) = CURRENT_DATE AND gateOut IS NOT NULL ORDER BY time_spent ASC LIMIT 1;"
469
+
470
+ },
471
+
472
+ {
473
+
474
+ "instruction": "The task is to find the material types associated with vehicles currently in the plant.",
475
+
476
+ "input": "What material types are associated with vehicles currently in the plant?",
477
+
478
+ "output": "SELECT DISTINCT materialType_code FROM transactionalplms.trip WHERE gateOut IS NULL;"
479
+
480
+ }
481
+ ]
482
+
483
+