Created
June 15, 2012 09:22
-
-
Save xoner/2935577 to your computer and use it in GitHub Desktop.
Simple query to get the software installed across the computers.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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