Sorry if this question is basic, I am learning MySQL.
Let's assume I have one table with names and given dates:
+----+-----------+-----------+
|Name|StartDate |EndDate |
+----+-----------+-----------+
|A |2013-08-29 |2014-12-29 |
|A |2013-08-29 |2013-09-31 |
|B |2015-01-02 |2015-03-20 |
|B |2013-08-20 |2013-08-30 |
+----+-----------+-----------+
I would like to find the elements (Name) which has conflicting (overlapping) dates. Here, A has conflicting dates, B does not have, and code should return A. The overlapping between A and B does not matter. Thank you.