Viewing 15 posts - 1,336 through 1,350 (of 13,874 total)
UPDATE tbl_salesactivity_new sn INNER JOIN arh ar ON sn.shipment = ar.shipment_i AND ar.ardelay > '0' SET sn.delay = 'Yes'
That is almost correct. Just need to shuffle things round a...
If you provide your sample data in a more accessible form, like this, you will probably get more responses:
DROP TABLE IF EXISTS #Transaction;
CREATE TABLE #Transaction(Transaction_Id INT, Date_Transaction...
This question is strikingly similar to this one.
Perhaps the responses you received there were not to your liking? You did not even have the courtesy to respond to the...
Viewing 15 posts - 1,336 through 1,350 (of 13,874 total)