I run this query :
$phql = ’SELECT Artists.name, Songs.name FROM Artists JOIN Songs ON Artists.id=Songs.id_artists WHERE Artists.name LIKE '%Bill%' $result = $this->modelsManager->query($phql);
Error result : SQLSTATE[23000]: Integrity constraint violation: 1052 Column 'name' in where clause is ambiguous
How To Fix It ?