1

是否可以运行全文搜索 MySQL 查询?我如何使用 TableGateway 做到这一点?提前致谢。

4

1 回答 1

3
$table = new \Zend\Db\TableGateway\TableGateway('table', $adapter);

$rowset = $table->select(function (\Zend\Db\Sql\Select $select) {
    $select->where(array(
        new \Zend\Db\Sql\Predicate\Expression("MATCH(column) AGAINST ('testing')")
    ));
});
于 2013-03-01T12:33:17.853 回答