Depending what you're looking for, it's possible to retrieve the data using various joins, but it will make your database server work hard to show your reports.
Here's an example:
select A.id, A.name, D.SSN, C.tvalue, E.tvalue, A.DEVICEID from hardware A left join accountinfo B on A.id=B.hardware_id left join config C on (C.name like 'ACCOUNT_VALUE_TAG_%' and C.ivalue = B.tag) left join config E on (E.name like 'ACCOUNT_VALUE_MACHINE_%' and E.ivalue = B.fields_3) left join bios D on A.id=D.hardware_id where A.DEVICEID <> '_SYSTEMGROUP_' ;