gpt4 book ai didi

mysql - 错误代码 : 1054. 'S.No' 中的未知列 'order clause'

转载 作者:太空宇宙 更新时间:2023-11-03 10:46:20 25 4
gpt4 key购买 nike

我在使用“ORDER BY”子句使用以下查询时遇到以下错误,表中确实存在 S.No(int 类型),不确定为什么会遇到此错误?有什么解决办法吗?

SELECT gerrit_id
FROM gerrits.gerrit_table
WHERE (((SU_version>='00.00.0001')&&(SU_version<='00.00.0006'))
AND PL='LA.HB.1.1.1'
AND component='SU_CNSS_BT_FM_LA.HB.1.1.1')
ORDER BY S.No

错误:-

Error Code: 1054. Unknown column 'S.No' in 'order clause'

表架构

Field   Type    Null    Key Default Extra
S.No int(11) NO PRI NULL auto_increment
gerrit_id varchar(45) NO PRI NULL
SI varchar(45) NO PRI NULL
component varchar(45) NO PRI NULL
gerrit_owner varchar(45) NO PRI NULL
release_bit int(11) NO PRI NULL
picked_bit int(11) NO PRI NULL

最佳答案

我很惊讶 DBMS 已经接受了列名 S.No 尽管试试这个:

SELECT gerrit_id
FROM gerrits.gerrit_table
WHERE (((SU_version>='00.00.0001')&&(SU_version<='00.00.0006'))
AND PL='LA.HB.1.1.1'
AND component='SU_CNSS_BT_FM_LA.HB.1.1.1')
ORDER BY `S.No`

关于mysql - 错误代码 : 1054. 'S.No' 中的未知列 'order clause',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31256749/

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