gpt4 book ai didi

mysql - Zend MySQL 仅在满足所有其他条件时才返回一个值

转载 作者:行者123 更新时间:2023-11-29 00:57:55 25 4
gpt4 key购买 nike

我想知道如何创建 Zend/MySQL 来检查 BLOB 是否存在。我正在使用的代码不起作用。任何建议将不胜感激。

$result = array();  
$select = $this->select();
$select->setIntegrityCheck(false);
$select->from($this->_name, '*')
->where(LENGTH($this->_name.'.ad_image') <= 0);
$result = $this->fetchAll($select)->toArray();

最佳答案

尝试...

$select->from($this->_name, '*')  
->where("LENGTH({$this->_name}.ad_image) <= 0");

关于mysql - Zend MySQL 仅在满足所有其他条件时才返回一个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5118492/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com