(No version information available, might only be in Git)
Table::select — Select rows from table
Creates a new TableSelect object.
columns
The columns to select data from. Can be an array with one or more values, or a string.
...
Additional columns parameter definitions.
TableSelect object.
Example #1 mysql_xdevapi\Table::select() example
<?php
$res = $table->select(['age', 'name'])->execute();
?>