Erland is right, this would be much easier to answer if you could provide the two tables structures separately (and as code instead of as an image). I've assumed that you mean this:
CREATE TABLE #imt (
id INT NOT NULL PRIMARY KEY
, [order] INT NOT NULL
, IMT_Status VARCHAR(10) NOT NULL
);
INSERT INTO #imt (
id
, [order]
, IMT_Status
) VALUES
(10266917, 2, 'XX')
, (10239944, 1, '61')
, (10256628, 2, '61')
, (10256623, 1, '61');
CREATE TABLE #adj (
id INT NOT NULL PRIMARY KEY
, Adj_Status VARCHAR(10) NOT NULL
);
INSERT INTO #adj (
id
, Adj_Status
) VALUES
(10266917, 'XX')
, (10239944, 'XX')
, (10256628, '61')
, (10256623, '61');
If that's correct, you can update #imt
from #adj
like this:
UPDATE tgt
SET IMT_Status = src.Adj_Status
FROM #adj src
INNER JOIN #imt tgt ON tgt.id = src.id