I started reading "teach yourself sequel in 10 minutes" yesterday and I am trying to write a query to pull all patch updates after 07/01/2015.(July, 01, 2015) I am having a difficult time trying to figure out if its a format issue in the database or the more probable reason is I am just a noob and I am doing it backwards... This is what I have so far.
select nodeid, name, installdate from [dbo].[assetinventory_osupdates] where datetime('mm-dd-yyyy' , installdate) >= 07-01-2015
I would greatly appreciate any advice and/help on the subject!!!