gpt4 book ai didi

php - codeigniter 中的子字符串查询

转载 作者:可可西里 更新时间:2023-11-01 00:21:30 28 4
gpt4 key购买 nike

我想要一个写以下查询。

SELECT SUBSTRING(zsmonth, 5, 2) as month FROM (`tblsales_month`)

所以我写了下面的代码。

$this->db->select('SUBSTRING(zsmonth, 5, 2) as month')
->from('tblsales_month');

但它会生成以下带有不必要反引号的查询。

SELECT SUBSTRING(zsmonth, `5`, `2)` as month FROM (`tblsales_month`)

最好的方法是什么?

最佳答案

添加第二个参数FALSE,如:

$this->db->select('SUBSTRING(zsmonth, 5, 2) as month', FALSE)
->from('tblsales_month');

将第二个参数设置为 FALSE,CodeIgniter 将不会尝试使用反引号保护您的字段或表名。

关于php - codeigniter 中的子字符串查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20486162/

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