Hi guys
Im in desperate need of a solution for this.
I have a input file containing:
Customer - Shipment id
Dennis 123456785
Martin 1111122257
Jens 222333564
I want to compare the shipment id to my mysql database
So I would love to be able to do something like
SELECT * FROM
Integration.booking_line bl
where
bl.shipment_awb IN (
[Shipment_id]
)
is this in any way possible?