I wonder if anyone can help with this Doctrine query.
Basically, My query does not return rows where the foreign key is not set or NULL. And I would like to return all rows.

Here are 2 schemas

Items

class Items{
  /**
   * @var integer $id
   *
   * @Column(name="id", type="integer", nullable=false)
   * @Id
   * @GeneratedValue(strategy="AUTO")
   */
    private $id;
  /**
   * @var string $name
   *
   * @Column(name="name", type="string", length=255, nullable=false)
   */
   private $name;
  /**
   * @var integer $type
   *
   * @ManyToOne(targetEntity="Types")
   *
   */
   private $type;
}

Types

class Types{
  /**
   * @var integer $id
   *
   * @Column(name="id", type="integer", nullable=false)
   * @Id
   * @GeneratedValue(strategy="AUTO")
   */
    private $id;
  /**
   * @var string $name
   *
   * @Column(name="name", type="string", length=255, nullable=false)
   */
   private $name;
}

And the following DQL query

SELECT i.id, i.name, t.name as type FROM entity\Items i, entity\Types t WHERE i.type=t.id (OTHER CONDITIONS...)

That above query does not return the rows that does not have a value in the type foreign key.

Is it possible to return those rows?

Thank you in advance...

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Try a LEFT JOIN:

SELECT i.id, i.name, t.name as type FROM entity\Items i LEFT JOIN i.type t

That will return everything on the left (Items) regardless if there is a matching Type.

link|improve this answer
keep getting Error: Identification Variable entity\\Types used in join path expression but was not defined before. – pǝlɐɥʞ Feb 22 at 17:33
What about LEFT JOIN i.type t – webbiedave Feb 22 at 17:39
That worked... Thank you so much... – pǝlɐɥʞ Feb 22 at 17:50
You're welcome. – webbiedave Feb 22 at 17:51
feedback

Sounds like you do not want this condition in the query;

i.type=t.id

Have you tried removing it or alternative something along the lines

(i.type=t.id OR i.type IS NULL)
link|improve this answer
If I remove that condition or change it with your suggestion, If I had 4 rows in Types it return the same result 4 times – pǝlɐɥʞ Feb 22 at 17:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.