I am trying to convert the below data into column value and print the data.
Database : SQL server
You can use conditional aggregation:
select id,
max(case when attb_name = 'Job name' then value end) as job_name,
max(case when attb_name = 'Created date' then value end) as created_date,
max(case when attb_name = 'Created by' then value end) as created_by,
max(case when attb_name = 'Job type' then value end) as job_type
from t
group by id;