ALTER TABLE `investor_investments`
ADD COLUMN `investment_source` VARCHAR(50) NULL AFTER `public_comment`;
UPDATE investor_investments
SET investor_investments.investment_source='LB'
WHERE investor_investments.investment_id IN (1370,1405,1455,1288);