I'm trying to select a value from a field AS "initial_cost" but the value is in a different column depending on the value of the channel_id field, if the channel_id is 1 then it's in field_id_4, if it's 2 then it;s in field_id_10.
I've tried various mutations of the below but to no avail,
SELECT (CASE WHEN channel_id = 1
THEN field_id_4
FROM exp_channel_data
WHEN channel_id = 2
THEN field_id_10 FROM exp_channel_data
END) as initial_cost
Can anyone help?