I want to get only the WHERE part of the SQL output. Because I will add "where" as to pure php.
for example; WHERE assigned_status = 'Okay'
like this
for example; WHERE assigned_status = 'Okay'
like this
Code:
$sql = $this->getEntityManager()->getQuery()->createSelectQuery('Meeting', $selectParams);
$sth = $pdo->prepare($sql);
$sth->execute();


Comment