I have a table named 'user'.I need to update the field 'email' .Is there any custom build queries for updating.I have only the uid of user.
I mean.. Is there any TYPO3 custom queries equivalent to
Update table 'user' set email = '[email protected]' where uid = 1;
like
$query = $this->createQuery(); $query->matching( $query->logicalAnd( $query->equals('organization', $organization), $query->contains('regions', $region) ) ) return $query->execute();