gpt4 book ai didi

php - 尝试打开表时出现未知列错误

转载 作者:行者123 更新时间:2023-11-29 17:44:09 25 4
gpt4 key购买 nike

因此,在运行下面的查询后,每当我尝试打开受影响的表时,它都会显示“顺序子句中的未知列 doc.section”。我仍然可以在上述表上运行查询,但我无法再使用 phpmyadmin 上的左侧面板访问该表。

查询:

select pending.*
from (
select distinct doc.*, users.dept_id
from list_users users, exit_doc doc
inner join (
select q.section,
max(q.subsection) subsection
from exit_doc q
group by q.section ) latest
on doc.section = latest.section
and doc.subsection = latest.subsection
where doc.user_id = users.user_id) pending
inner join (
select approvers.dept_id, approvers.role_code
from approvers
where user_id = 10004
and delete_flag = 0) user
on pending.next_user = user.role_code
and pending.dept_id = user.dept_id

我的查询是否以某种方式影响了表的结构?错误说 order 子句中的未知列,但我在查询中没有使用任何 order?

最佳答案

您是否尝试过清除浏览器的 cookie 和缓存?

关于php - 尝试打开表时出现未知列错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49874501/

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