Mysql
 sql >> Database >  >> RDS >> Mysql

MySQL:combinazione di più condizioni 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'
                   )
         )