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