have column1 datatype (bit,null) so it only takes values like 0 and 1 but i want true , false as we
The data type bit can only contain numeric 0 and 1; "false"/"true" are strings, that's not possible. You have to convert it like
SELECT CASE WHEN value = 'false' THEN 0 ELSE 1 END AS BitValue