-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtodo.txt
215 lines (188 loc) · 22.2 KB
/
todo.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
1. Parse the query and send it to the booking function //Done
2. Complete the booking function
3. Send the result to the client module
4. Admin menu option
todo:
manage output file based on queries
update sql file for queries
multithreading - parallelism - (top -h) - GIL
admin file parse
seat allocation method
name - ',' parse change - slice
upper bound on train searching time gap between trains and search on a fixed date (option menu)
Test Sets:
Add 2 trains, 4652 and 22517 in db with 999 coaches in both category on 2022-11-01
Insert into ac_cc(berth_no,type) values(1,'lb');
Insert into ac_cc(berth_no,type) values(2,'lb');
Insert into ac_cc(berth_no,type) values(3,'ub');
Insert into ac_cc(berth_no,type) values(4,'ub');
Insert into ac_cc(berth_no,type) values(5,'sl');
Insert into ac_cc(berth_no,type) values(6,'su');
Insert into ac_cc(berth_no,type) values(7,'lb');
Insert into ac_cc(berth_no,type) values(8,'lb');
Insert into ac_cc(berth_no,type) values(9,'ub');
Insert into ac_cc(berth_no,type) values(10,'ub');
Insert into ac_cc(berth_no,type) values(11,'sl');
Insert into ac_cc(berth_no,type) values(12,'su');
Insert into ac_cc(berth_no,type) values(13,'lb');
Insert into ac_cc(berth_no,type) values(14,'lb');
Insert into ac_cc(berth_no,type) values(15,'ub');
Insert into ac_cc(berth_no,type) values(16,'ub');
Insert into ac_cc(berth_no,type) values(17,'sl');
Insert into ac_cc(berth_no,type) values(18,'su');
Insert into sl_cc(berth_no,type) values(1,'lb');
Insert into sl_cc(berth_no,type) values(2,'mb');
Insert into sl_cc(berth_no,type) values(3,'ub');
Insert into sl_cc(berth_no,type) values(4,'lb');
Insert into sl_cc(berth_no,type) values(5,'mb');
Insert into sl_cc(berth_no,type) values(6,'ub');
Insert into sl_cc(berth_no,type) values(7,'sl');
Insert into sl_cc(berth_no,type) values(8,'su');
Insert into sl_cc(berth_no,type) values(9,'lb');
Insert into sl_cc(berth_no,type) values(10,'mb');
Insert into sl_cc(berth_no,type) values(11,'ub');
Insert into sl_cc(berth_no,type) values(12,'lb');
Insert into sl_cc(berth_no,type) values(13,'mb');
Insert into sl_cc(berth_no,type) values(14,'ub');
Insert into sl_cc(berth_no,type) values(15,'sl');
Insert into sl_cc(berth_no,type) values(16,'su');
Insert into sl_cc(berth_no,type) values(17,'lb');
Insert into sl_cc(berth_no,type) values(18,'mb');
Insert into sl_cc(berth_no,type) values(19,'ub');
Insert into sl_cc(berth_no,type) values(20,'lb');
Insert into sl_cc(berth_no,type) values(21,'mb');
Insert into sl_cc(berth_no,type) values(22,'ub');
Insert into sl_cc(berth_no,type) values(23,'sl');
Insert into sl_cc(berth_no,type) values(24,'su');
Insert into station(uid,doj,arrival_time,departure_time,order_of_station,name) values(12891,'2022-12-10', '01:01:01' , '01:30:01' ,2,'Ahmedabad');
Insert into station(uid,doj,arrival_time,departure_time,order_of_station,name) values(12891,'2022-12-10', '03:03:03' , '03:48:01' ,5,'Udaipur');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12892,'2022-12-10', '05:03:03' , '05:48:01' ,1,'Jaipur');
Insert into station(uid,doj,arrival_time,departure_time,order_of_station,name) values(12892,'2022-12-10', '06:03:03' , '06:48:01' ,5,'Udaipur');
Insert into station(uid,doj,arrival_time,departure_time,order_of_station,name) values(12893,'2022-12-10', '01:30:01' , '01:50:01' ,2,'Ahmedabad');
Insert into station(uid,doj,arrival_time,departure_time,order_of_station,name) values(12893,'2022-12-10', '03:53:03' , '04:48:01' ,3,'Jaipur');
======================== TRAINS ==================================
-- # 12046
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12046,'2022-12-10', '12:05:00' , '12:05:00' , 0, 1, 'CHANDIGARH');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12046,'2022-12-10', '12:43:00' , '12:47:00' , 0, 2, 'AMBALA CANT JN');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12046,'2022-12-10', '13:35:00' , '13:37:00' , 0, 3, 'KARNAL');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12046,'2022-12-10', '15:20:00' , '15:20:00' , 0, 4, 'NEW DELHI');
-- # 12012
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12012,'2022-12-10', '17:45:00' , '17:45:00' , 0, 1, 'KALKA');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12012,'2022-12-10', '18:15:00' , '18:23:00' , 0, 2, 'CHANDIGARH');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12012,'2022-12-10', '19:03:00' , '19:08:00' , 0, 3, 'AMBALA CANT JN');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12012,'2022-12-10', '19:38:00' , '19:40:00' , 0, 4, 'KURUKSHETRA JN');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12012,'2022-12-10', '20:22:00' , '20:24:00' , 0, 5, 'PANIPAT JN');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12012,'2022-12-10', '21:50:00' , '21:50:00' , 0, 6, 'NEW DELHI');
-- # 22692
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(22692,'2022-12-10', '19:50:00' , '19:50:00' , 0, 1, 'NEW DELHI');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(22692,'2022-12-10', '21:45:00' , '21:47:00' , 0, 2, 'AGRA CANTT');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(22692,'2022-12-10', '23:08:00' , '23:10:00' , 0, 3, 'GWALIOR');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(22692,'2022-12-10', '00:25:00' , '00:30:00' , 1, 4, 'V LAKSHMIBAI');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(22692,'2022-12-10', '03:45:00' , '03:55:00' , 1, 5, 'BHOPAL JN');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(22692,'2022-12-10', '05:23:00' , '05:25:00' , 1, 6, 'ITARSI JN');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(22692,'2022-12-10', '09:25:00' , '09:30:00' , 1, 7, 'NAGPUR');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(22692,'2022-12-10', '12:15:00' , '12:20:00' , 1, 8, 'BALHARSHAH');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(22692,'2022-12-10', '15:08:00' , '15:10:00' , 1, 9, 'KAZIPET JN');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(22692,'2022-12-10', '17:10:00' , '17:25:00' , 1, 10, 'SECUNDERABAD JN');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(22692,'2022-12-10', '19:29:00' , '19:30:00' , 1, 11, 'SERAM');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(22692,'2022-12-10', '21:38:00' , '21:40:00' , 1, 12, 'RAICHUR');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(22692,'2022-12-10', '23:30:00' , '23:35:00' , 1, 13, 'GUNTAKAL JN');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(22692,'2022-12-10', '02:03:00' , '02:05:00' , 2, 14, 'SAI P NILAYAM');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(22692,'2022-12-10', '05:20:00' , '05:20:00' , 2, 15, 'KSR BENGALURU');
-- # 12650
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12650,'2022-12-10', '08:20:00' , '08:20:00' , 0, 1, 'NEW DELHI');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12650,'2022-12-10', '11:43:00' , '11:45:00' , 0, 2, 'GWALIOR');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12650,'2022-12-10', '13:01:00' , '13:09:00' , 0, 3, 'V LAKSHMIBAI');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12650,'2022-12-10', '16:55:00' , '17:05:00' , 0, 4, 'BHOPAL JN');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12650,'2022-12-10', '22:55:00' , '23:00:00' , 0, 5, 'NAGPUR');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12650,'2022-12-10', '02:25:00' , '02:30:00' , 1, 6, 'BALHARSHAH');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12650,'2022-12-10', '08:20:00' , '08:30:00' , 1, 7, 'KALCHEGUDA');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12650,'2022-12-10', '12:29:00' , '12:30:00' , 1, 8, 'KURNOOL CITY');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12650,'2022-12-10', '15:20:00' , '15:25:00' , 1, 9, 'GUNTAKAL JN');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12650,'2022-12-10', '16:30:00' , '16:35:00' , 1, 10, 'BALLARI JN');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12650,'2022-12-10', '17:35:00' , '17:40:00' , 1, 11, 'HOSAPETE JN');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12650,'2022-12-10', '18:14:00' , '18:16:00' , 1, 12, 'KOPPAL');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12650,'2022-12-10', '19:00:00' , '19:02:00' , 1, 13, 'GADAG JN');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12650,'2022-12-10', '20:35:00' , '20:45:00' , 1, 14, 'SSS HUBBALLI JN');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12650,'2022-12-10', '21:58:00' , '22:00:00' , 1, 15, 'MMAILARA HAVERI');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12650,'2022-12-10', '23:13:00' , '23:15:00' , 1, 16, 'DAVANGERE');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12650,'2022-12-10', '01:15:00' , '01:20:00' , 2, 17, 'ARSIKERE JN');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12650,'2022-12-10', '03:24:00' , '03:25:00' , 2, 18, 'TUMAKURU');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12650,'2022-12-10', '05:30:00' , '05:30:00' , 2, 19, 'YESVANTPUR JN');
-- # 12058
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12058,'2022-12-10', '05:05:00' , '05:05:00' , 0, 1, 'UNA HIMACHAL');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12058,'2022-12-10', '05:22:00' , '05:28:00' , 0, 2, 'NANGAL DAM');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12058,'2022-12-10', '05:42:00' , '05:44:00' , 0, 3, 'ANANDPUR SAHIB');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12058,'2022-12-10', '05:52:00' , '05:54:00' , 0, 4, 'KIRATPUR SAHIB');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12058,'2022-12-10', '06:13:00' , '06:15:00' , 0, 5, 'RUPNAGAR');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12058,'2022-12-10', '06:40:00' , '06:42:00' , 0, 6, 'MORINDA');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12058,'2022-12-10', '06:57:00' , '06:59:00' , 0, 7, 'KHARAR');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12058,'2022-12-10', '07:16:00' , '07:18:00' , 0, 8, 'SAHIBZADA ASNGR');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12058,'2022-12-10', '07:33:00' , '07:43:00' , 0, 9, 'CHANDIGARH');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12058,'2022-12-10', '08:32:00' , '08:45:00' , 0, 10, 'AMBALA CANT JN');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12058,'2022-12-10', '09:14:00' , '09:16:00' , 0, 11, 'KURUKSHETRA JN');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12058,'2022-12-10', '09:38:00' , '09:40:00' , 0, 12, 'KARNAL');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12058,'2022-12-10', '10:02:00' , '10:04:00' , 0, 13, 'PANIPAT JN');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12058,'2022-12-10', '10:22:00' , '10:24:00' , 0, 14, 'BHODWAL MAJRI');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12058,'2022-12-10', '10:32:00' , '10:34:00' , 0, 15, 'SONIPAT');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12058,'2022-12-10', '11:05:00' , '11:07:00' , 0, 16, 'SUBZI MANDI');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12058,'2022-12-10', '11:45:00' , '11:45:00' , 0, 17, 'NEW DELHI');
-- # 12992
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12992,'2022-12-10', '14:30:00' , '14:30:00' , 0, 1, 'JAIPUR');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12992,'2022-12-10', '15:11:00' , '15:13:00' , 0, 2, 'PHULERA JN');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12992,'2022-12-10', '15:51:00' , '15:53:00' , 0, 3, 'KISHANGARH');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12992,'2022-12-10', '16:30:00' , '16:35:00' , 0, 4, 'AJMER JN');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12992,'2022-12-10', '17:00:00' , '17:02:00' , 0, 5, 'NASIRABAD');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12992,'2022-12-10', '17:29:00' , '17:31:00' , 0, 6, 'BIJAINAGAR');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12992,'2022-12-10', '17:37:00' , '17:38:00' , 0, 7, 'GULABPURA');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12992,'2022-12-10', '18:13:00' , '18:15:00' , 0, 8, 'MANDAL');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12992,'2022-12-10', '18:25:00' , '18:30:00' , 0, 9, 'BHILWARA');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12992,'2022-12-10', '19:22:00' , '19:37:00' , 0, 10, 'CHITTAURGARH');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12992,'2022-12-10', '20:16:00' , '20:17:00' , 0, 11, 'KAPASAN');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12992,'2022-12-10', '20:35:00' , '20:36:00' , 0, 12, 'FATEHNAGAR');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12992,'2022-12-10', '20:48:00' , '20:50:00' , 0, 13, 'MAVLI JN');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12992,'2022-12-10', '21:23:00' , '21:25:00' , 0, 14, 'RANAPRATAPNAGAR');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(12992,'2022-12-10', '22:00:00' , '22:00:00' , 0, 15, 'UDAIPUR CITY');
-- # 19412
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '14:25:00' , '14:25:00' , 0, 1, 'DAULATPUR CHAUK');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '14:38:00' , '14:40:00' , 0, 2, 'AMB ANDAURA');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '15:02:00' , '15:04:00' , 0, 3, 'UNA HIMACHAL');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '15:25:00' , '15:35:00' , 0, 4, 'NANGAL DAM');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '15:49:00' , '15:51:00' , 0, 5, 'ANANDPUR SAHIB');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '16:16:00' , '16:18:00' , 0, 6, 'RUPNAGAR');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '16:43:00' , '16:45:00' , 0, 7, 'MORINDA');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '17:20:00' , '17:22:00' , 0, 8, 'SAHIBZADA ASNGR');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '17:43:00' , '17:55:00' , 0, 9, 'CHANDIGARH');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '18:40:00' , '18:45:00' , 0, 10, 'AMBALA CANT JN');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '19:28:00' , '19:54:00' , 0, 11, 'KURUKSHETRA JN');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '20:45:00' , '20:47:00' , 0, 12, 'KAITHAL');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '21:48:00' , '21:50:00' , 0, 13, 'NARWANA JN');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '22:02:00' , '22:04:00' , 0, 14, 'UCHANA');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '22:21:00' , '22:24:00' , 0, 15, 'JIND JN');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '22:41:00' , '22:43:00' , 0, 16, 'DJULANA');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '23:14:00' , '23:18:00' , 0, 17, 'ROHTAK JN');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '23:50:00' , '23:52:00' , 0, 18, 'JHAJJAR');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '00:55:00' , '01:00:00' , 1, 19, 'REWARI');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '01:40:00' , '01:42:00' , 1, 20, 'KHAIRTHAL');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '02:04:00' , '02:07:00' , 1, 21, 'ALWAR');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '02:32:00' , '02:34:00' , 1, 22, 'RAJGARH');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '02:57:00' , '02:59:00' , 1, 23, 'BANDIKUI JN');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '03:18:00' , '03:20:00' , 1, 24, 'DAUSA');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '03:58:00' , '04:01:00' , 1, 25, 'GANDHINAGAR JPR');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '04:20:00' , '04:30:00' , 1, 26, 'JAIPUR');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '05:12:00' , '05:13:00' , 1, 27, 'PHULERA JN');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '05:53:00' , '05:55:00' , 1, 28, 'KISHANGARH');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '06:45:00' , '06:55:00' , 1, 29, 'AJMER JN');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '07:38:00' , '07:40:00' , 1, 30, 'BEAWAR');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '08:50:00' , '08:55:00' , 1, 31, 'MARWAR JN');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '09:31:00' , '09:33:00' , 1, 32, 'RANI');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '09:48:00' , '09:50:00' , 1, 33, 'FALNA');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '10:18:00' , '10:20:00' , 1, 34, 'NANA');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '10:35:00' , '10:37:00' , 1, 35, 'PINDWARA');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '10:52:00' , '10:54:00' , 1, 36, 'SWARUPGANJ');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '11:20:00' , '11:30:00' , 1, 37, 'ABU ROAD');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '12:30:00' , '12:32:00' , 1, 38, 'PALANPUR JN');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '13:00:00' , '13:02:00' , 1, 39, 'SIDDHPUR');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '13:15:00' , '13:17:00' , 1, 40, 'UNJHA');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '13:40:00' , '13:42:00' , 1, 41, 'MAHESANA JN');
Insert into station(uid,doj,arrival_time,departure_time,off_set,order_of_station,name) values(19412,'2022-12-10', '15:00:00' , '15:00:00' , 1, 42, 'SABARMATI BG');