gpt4 book ai didi

mysql - where 子句中的列 'id' 不明确

转载 作者:可可西里 更新时间:2023-11-01 06:35:21 25 4
gpt4 key购买 nike

我收到此错误,但我不知道为什么?

Error Number: 1052
Column 'id' in where clause is ambiguous

SELECT `leads`.*,
`customers`.`id` AS customers_id,
`customers`.`name` AS customers_name,
`customers`.`company` AS customers_company,
`customers`.`email` AS customers_email,
`customers`.`phone` AS customers_phone,
`customers`.`created_at` AS customers_created_at,
`customers`.`updated_at` AS customers_updated_at,
`customers`.`ip_address` AS customers_ip_addressFROM (`leads`)
JOIN `customers` ON `customers`.`id` = `leads`.`customer_id`
WHERE `id` = '3'
AND `leads`.`id` = '1'LIMIT 1

Filename: /home/www/REMOVED/models/lead.php

Line Number: 12

函数如下所示:

function get($id)
{
$this->db->select('leads.*, customers.id AS customers_id, customers.name AS customers_name, customers.company AS customers_company, customers.email AS customers_email, customers.phone AS customers_phone, customers.created_at AS customers_created_at, customers.updated_at AS customers_updated_at, customers.ip_address AS customers_ip_address');
$this->db->where('leads.id', '1');
$this->db->from('leads');
$this->db->join('customers', 'customers.id = leads.customer_id');
$this->db->limit(1);
$query = $this->db->get();

if ($query->num_rows() == 1)
{
$result = $query->result();
return $result[0];
}
}

第 12 行是 $query = $this->db->get();

怎么了?

最佳答案

WHERE id = '3'

您没有指定 id 字段来自哪个表。你的意思是:

WHERE customer.id = '3'

条件将是 customer.id 而不是 id

关于mysql - where 子句中的列 'id' 不明确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22632441/

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