gpt4 book ai didi

mysql - Zend 2 sql查询问题

转载 作者:行者123 更新时间:2023-11-29 23:49:46 24 4
gpt4 key购买 nike

3个框架,想做简单的sql。我有这样的功能,但问题是我输出"SELECT listings.* FROM listings WHERE listings_id = '1' LIMIT '1'"我不希望在选择 I 之后立即显示第一个列表想要所有的列。

static $tableName = 'listings';

public function getListingsById($id){

$select = new Select();
$select->from(self::$tableName);
$where = new Where();
$where->equalTo('listings_id', $id);
$select->where($where);
$select->limit(1);

echo $select->getSqlString($this->getAdapter()->getPlatform());
return $this->selectWith($select);
}

最佳答案

SELECTListings.*FROMlistingsSELECT*FROMlistings 相同 - 两者都会为您提供该表中的所有列。

关于mysql - Zend 2 sql查询问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25703483/

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