TableUpdate::__construct TableUpdate constructor &reftitle.description; private mysql_xdevapi\TableUpdate::__construct Initiated by using the update() method. &reftitle.parameters; &no.function.parameters; &reftitle.examples; <function>mysql_xdevapi\TableUpdate::__construct</function> example getSchema("addressbook"); $table = $schema->getTable("names"); $res = $table->update() ->set('level', 3) ->where('age > 15 and age < 22') ->limit(4) ->orderby(['age asc','name desc']) ->execute(); ?> ]]>