I have the following database table and am trying to select records where the like nodeid existed yesterday, but does not exist today. The following is example data in the table. Both fields are text.
NODEID DATE
110011 2003-06-02
110011 2003-06-03
111100 2003-06-02
In this scenario nodeid 111100 does not exist today. I need to report that nodeid 111100 does not exist. I have tried using Grouping, but have not been successful. Any help would be appreciated.
NODEID DATE
110011 2003-06-02
110011 2003-06-03
111100 2003-06-02
In this scenario nodeid 111100 does not exist today. I need to report that nodeid 111100 does not exist. I have tried using Grouping, but have not been successful. Any help would be appreciated.