I am implementing some retweet type of concept. Now, there can be millions of retweet ( 1-2, 2-3, 3-4, 4-5 ...).
If I delete retweet from 2 then it should also remove from 3, 4, 5, ... To delete this, I have to make that many query as join won't help me. How can I do this deletion for such large number of queries quickly?