sql >> Base de Datos >  >> RDS >> Mysql

MySQL:Combinando múltiples condiciones where

select * from menu 
where alias='filename' and 
parent = (select node_id from menu
          where alias='folder2' and
          parent = (select node_id from menu
                    where alias='folder1'
                   )
         )