Hi All ,
Will MySQL supports START WITH ..CONNECT BY Clause. I have a SELECT Statement(With Start With .. Connect By Clause) that will returns the Hierarchical data of a particular Table .
Is there any way to Query MySQL to get the same out put .
Oracle SQL:
Quote:
|
Select parent1,child from hierrarchy start with parent1=1 connect by parent1=child
|
I am in need of getting the MySQL Equivalent of the above Oracle query .
Thanks ,
Sushma