medoo怎么在column参数中使用sql函数?

发布于 2022-09-03 19:06:22 字数 183 浏览 18 评论 0

SELECT COUNT(distinct(uid)) FROM nazou.items_want 

有时候需要像上面那条那样,查一下某个表里有哪些uid,使用medoocount方法,怎么做到上面那条语句那样的功能?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夏花。依旧 2022-09-10 19:06:22

已解决我目前的版本是1.4.5

修改
protected function columnPush(&$columns)

{
    if ($columns === '*')
    {
        return $columns;
    }

    $stack = [];

    if (is_string($columns))
    {
        $columns = [$columns];
    }

    foreach ($columns as $key => $value)
    {

        preg_match('/^#([a-zA-Z0-9_\-]*)\(([a-zA-Z0-9_\-\.]*)\)\s*(\(([a-zA-Z0-9_\-]*)\))?/i', $value, $match);

        if(isset($match[1], $match[2])){

            $column_fn = $match[1] . '('. $this->columnQuote( $match[2] ) . ')';

            if( count($match) === 5 ){
                array_push($stack, $column_fn . ' AS ' . $this->columnQuote( $match[4] ));
            }else{
                array_push($stack, $column_fn);
            }

        }else{

            preg_match('/([a-zA-Z0-9_\-\.]*)\s*\(([a-zA-Z0-9_\-]*)\)/i', $value, $match);

            if (isset($match[1], $match[2]))
            {
                array_push($stack, $this->columnQuote( $match[1] ) . ' AS ' . $this->columnQuote( $match[2] ));
            }
            else
            {
                array_push($stack, $this->columnQuote( $value ));
            }
        }
    }

    return implode($stack, ',');
}
并且修改select方法最后部分
 while ($data = $query->fetch(PDO::FETCH_ASSOC))
    {
       // $current_stack = [];

        //$this->dataMap($data, $columns, $column_map, $current_stack);

        $stack[$index] = $data;
       
        $index++;
    }

    return $stack;
比忠 2022-09-10 19:06:22

$db->select(table, [
'cnt' => Medoo::raw('count(distinct uid))')
]);

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文