sebo: mehrere columns bei subselect

Beitrag lesen

  
SELECT  
        a.id  
 (SELECT width, height FROM photos WHERE user_id = a.id),  
 a.name  
  
FROM table a  
...  

ERROR 1241 (21000): Operand should contain 1 column(s)

Weiss jemand wie man width und height in das Main-Select übernehmen kann?