In your second example there are no customers with start date of 13/11/2011.
Anyways, If you just need the minimum start date against a customer then you can do this...
SELECT CUSTOMER_ID, MIN(START_DATE) FROM <<TABLE_NAME>> GROUP BY CUSTOMER_ID
↧