我有一个名为 Table1 的表,如下所示:
Company Start1 Start2 Start3 End1 End2 End3
-----------------------------------------------------------------------------
010105 1/2/1990 7/30/2001
023123 2/1/1998 2/1/2012 5/15/2008
124557 1/15/2001
436567 1/12/2004 1/12/2010 1/12/2012 1/15/2005 1/15/2010
034534 1/1/2002 1/1/2003 1/1/2004 5/1/2002 5/1/2006 5/1/2004
123456 1/1/2002 1/1/2003 5/1/2006
我正在寻找任何具有 Start1 而没有相应 End1 或 Start2 没有相应 End2 的公司,等等。字段中的条目不会完全匹配,但如果一个有条目,另一个也应该。
这可能吗?
上面示例中的查询将返回以下内容:
023123 (has Start2 but no End2)
124557 (has Start1 but no End1)
436567 (has Start3 but no End3)
123456 (has Start1 but no End1)
(我只需要公司编号,不需要括号内的文字)
谢谢!!