You are on page 1of 1

insert into transportEvent values ( '23445sd', 'flight', 'lagos-ibadan expressway'), ('5677ty', 'rail', 'ikeja

under bridge'), (‘10876gh’, ‘road’, ‘alimosho rd’), (‘5637gy’, ‘road’, ‘isaac john street’), (‘2473yh’,
‘road’, ‘ikeja bus stop’), (‘6789xw’, ‘flight’, ‘garki district’), (‘3563xe’, ‘rail’, ‘mayowa close’), (‘5768bd’,
‘road’, ‘oki lane, maryland’), (‘7564rv’, ‘road’, ‘computer village, ikeja’), (‘2364mo’, ‘road’, ‘jigawa
street’), (‘5859tb’, ‘road’, ‘landmark street’), (‘3967uj’, ‘road’,’ijebu ode’), (‘7990bb’, ‘flight’, ‘marg
estate’), (‘4679ni’, ‘road’, ‘missy avenue’), (’1234ab’, ‘road’, ‘iju bus stop’), (‘3474eh’, ‘flight’, ‘lagos
ibadan express way’), (‘8935dh’, ‘rail’, ‘ikeja under bridge’), (‘6892ov’, ‘road’, ‘shagamu interchange’),
(‘3574pg’, ‘road’, ‘obafemi awolowo road’), (‘8338ru’, ‘rail’, ‘lagos ibadan expressway’),
(‘3582gu’,’road’, ‘stevens mainroad’), (‘2482vu’, ‘road’, ‘ibadan expressway’), (‘3589cu’, ‘rail’, ‘marty
birde road’)

insert into retailCenter values ( 'er445', 'mini outlet', '45 aba road, portharcourt'), ('yu7788',
'warehouse', '34 okoke road, ikeja'), (‘yh358’, ‘mini outlet’, ‘76, iju close, lagos’), (‘xe5676’,
‘warehouse’, ‘12, makpara, ogun’), (‘qa345’, ‘warehouse’, ‘13, iju close, abeokuta’), (‘rw2444’, ‘mini
outlet’, ‘110, shogbamu street, gbagada’), (‘rt2442’, ‘warehouse’, ‘12, toxic close, lagos’), (‘tu2942’,
’warehouse’, ‘23, mayowa street, lagos’), (‘fb2554’, ‘warehouse’, ‘42 jacob street, port harcourt’),
(‘fu8903’, ‘mini outlet’, ‘09, joseph street, benin’), (‘bo2898’, ‘min outlet’, ‘11, laura close, delta’),
(‘vu8242’, ‘warehouse’, ‘14, marteens avenue, ogun state’), (‘by2000’, ‘mini outlet’, ‘11, darasimi
street, ogun’), (‘pr2100’. ‘warehouse’, ‘90, uche close, lagos’), (‘fi2822’, ‘mini outlet’, ‘03, ireoluwa
close, abeokuta’), (‘cv3222’, ‘warehouse’, ‘21, anthony, lagos’), (‘vu5895’, ‘warehouse’, ‘6, abiola
avenue’), (‘vi2489’, ‘mini outlet’, ‘12, mko abiola road’)

insert into shipments values ( 'qwert45565', '45kg', 'Abuja', 5556.98, '2021-12-12', '23 x 34', 'yu7788',
'23445sd'), ( 'qwert45555', '45kg', 'Abuja', 5556.98, '2021-12-12', '33 x 44', 'yu7788', '23445sd'),
(‘trewq7565’, ‘50kg’, ‘lagos’, 456,77, ‘2021-12-13’, ‘33 x 45’, ‘rt2442’, ‘3474eh’);

Basically, the first value is the item number, the second is the is weight, the third is destination, next is
insurance amount, next is final delivery date, next is dimensions, then the next is center id
referencing id in retail center so you pick one of the already existing numbers from retail center, next
is schedule number referencing schedule number in transport event so you pick a number from
transport event.

You might also like