示例#1
0
 function visitSirelNodeFunctionsCount(Node\Functions\Count $node)
 {
     return $this->platform->getCountExpression($this->visit($node->getChildren()));
 }
示例#2
0
文件: ToSql.php 项目: chh/sirel
 function visitSirelNodeFunctionsCount(Node\Functions\Count $node)
 {
     return "COUNT(" . $this->visit($node->getChildren()) . ")";
 }