Is it possible to combine the following three SQL queries into one that can be used in the PHPRunner report SQL query?
select `id`,
`type`,
`site`,
`division`,
`costcenter`,
`floor`,
`location`,
`user`,
`model`,
`serial`,
`purchasedate`,
`other`,
`notes`
From `hardware`
select count() as laptop_count from hardware where type = 'Laptop'
select count() as desktop_count from hardware where type = 'Desktop'
Thanks,
David