|
Table::selectSelect rows from table Description
public mysql_xdevapi\TableSelect mysql_xdevapi\Table::select(mixed
$columns, mixed ...$more_columns)Fetches data from a table. Parameters
Return ValuesA TableSelect object; use the execute() method to execute the select and return a RowResult object. ExamplesExample #1 mysql_xdevapi\Table::count example The above example will output something similar to:
Array
(
[0] => Array
(
[name] => John
[age] => 42
)
[1] => Array
(
[name] => Sam
[age] => 33
)
)
|