📄️ update()
Updates the first row matching the specified conditions and retrieves the updated record. Returns null if no matching record is found.
📄️ updateMany()
Updates all rows matching the specified conditions to the given values.
📄️ updateManyAndReturn()
Updates all rows matching the specified conditions and retrieves the updated records as an array.
📄️ upsert()
Updates a record if it matches the specified conditions, or creates a new one if it doesn't exist. Returns the resulting record.