select a.hostname,a.user,b.name as 'domain name', a.reserved, d.name as 'ownership' from computer_system a,domain_category b, ownership c,ownership_category d where c.computerid=1 and c.removed is null and c.modelid<3000 and a.computerid=c.computerid and b.modelid=a.domain and d.modelid=c.modelid order by a.hostname


select a.hostname,a.user,b.name as 'domain name', a.reserved, d.name as 'ownership',b1.name as 'audio controller' from computer_system a,domain_category b, ownership c,ownership_category d,sound_controller a1,sound_category b1 where b1.name like '%sound%' and a1.modelid=b1.modelid and a1.removed is null and c.computerid=a1.computerid and c.removed is null and c.modelid<3000 and a.computerid=c.computerid and b.modelid=a.domain and d.modelid=c.modelid order by a.hostname,b1.name



select a.hostname,a.user,b.name as 'domain name', a.reserved, d.name as 'ownership',b1.name as 'audio controller',b2.name as 'processor',b2.speed as 'speed', from computer_system a,domain_category b, ownership c,ownership_category d,sound_controller a1,sound_category b1,processor a2, processor_category b2 where b1.name like '%sound%' and a1.modelid=b1.modelid and a1.removed is null and b2.name like '%intel%' and a2.modelid=b2.modelid and a2.removed is null and a2.computerid=a1.computerid and c.computerid=a2.computerid and c.removed is null and c.modelid<3000 and a.computerid=c.computerid and b.modelid=a.domain and d.modelid=c.modelid and b2.speed<500 order by a.hostname,b1.name,b2.name

select a.hostname,a.user,b.name as 'domain name',a.reserved,d.name as 'ownership',b1.name as 'audio controller',b2.name as 'processor',b2.speed as 'speed' from computer_system a,domain_category b, ownership c,ownership_category d,sound_controller a1,sound_category b1,processor a2, processor_category b2 where b1.name like '%sound%' and a1.modelid=b1.modelid and a1.removed is null and b2.name like '%intel%' and a2.modelid=b2.modelid and a2.removed is null and a2.computerid=a1.computerid and b2.speed>500 and c.computerid=a2.computerid and c.removed is null and c.modelid<3000 and a.computerid=c.computerid and b.modelid=a.domain and d.modelid=c.modelid order by a.hostname,b1.name,b2.name


