Skip to content

Instantly share code, notes, and snippets.

@xoner
Created June 15, 2012 09:22
Show Gist options
  • Save xoner/2935577 to your computer and use it in GitHub Desktop.
Save xoner/2935577 to your computer and use it in GitHub Desktop.
Simple query to get the software installed across the computers.
USE ocsweb;
SELECT H.NAME, S.NAME, S.VERSION
FROM softwares S, hardware H
where S.NAME LIKE '%SoftwareName%' AND H.ID = S.HARDWARE_ID;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment