(无版本信息可用,可能仅存在于 Git 中)
TableSelect::execute — 执行 select 语句
通过将 select 语句与 execute() 方法链接来执行 select 语句。
此函数没有参数。
一个 RowResult 对象。
示例 #1 mysql_xdevapi\TableSelect::execute() 示例
<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$schema = $session->getSchema("addressbook");
$table = $schema->getTable("names");
$result = $table->select('name','age')
->where('name like :name and age > :age')
->bind(['name' => 'John', 'age' => 42])
->orderBy('age desc')
->execute();
$row = $result->fetchAll();
?>
以上示例将输出类似于以下内容
Array ( [0] => Array ( [name] => John [age] => 42 ) )