mysql - Problems with multiple rows as result of a query -


i having problem query :

select tempo.* tempo,fermata fermata.via = ''        , fermata.identificativo=(select distinct tempo.nome_fermata            ( tempo              inner join fermata on fermata.identificativo = tempo.nome_fermata )) 

phpmyadmin display me error : enter image description here

multiple result subquery due '=' should 'in' or use 'exists'

select tempo.* tempo,fermata fermata.via = ''        , fermata.identificativo in (select distinct tempo.nome_fermata             tempo              inner join fermata on fermata.identificativo = tempo.nome_fermata ) 

Comments