gpt4 book ai didi

mysql_result 返回文件名作为结果

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

我是网络编程的新手。我只研究了一年左右。

我的问题如下。出于某种原因,当我使用此查询(在 phpadmin wampserver 中)时,最后 4 个字段结果是字段名称。

SELECT  `latin_name` ,  
`group` ,
`name` ,
`continent` ,
`country` ,
`position` ,
`hight_min` ,
`hight_max` ,
`light_min` ,
`light_max` ,
`temp_min` ,
`temp_max` ,
`nk_min` ,
`nk_max` ,
`gh_min` ,
`gh_max` ,
`ph_min` ,
`ph_max` ,
`growth_rate` ,
'growth_min',
'growth_max',
'gfactor',
'period'
FROM `plants`
WHERE continent LIKE 'As'
AND growth_rate LIKE 'slow'
LIMIT 0 , 30

可能是什么问题?

最佳答案

您似乎混合了多种引用类型。前几个字段使用 `,但后 4 个字段使用 ',这会将它们转换为字符串文字。

尝试:

SELECT  `latin_name` ,  
`group` ,
`name` ,
`continent` ,
`country` ,
`position` ,
`hight_min` ,
`hight_max` ,
`light_min` ,
`light_max` ,
`temp_min` ,
`temp_max` ,
`nk_min` ,
`nk_max` ,
`gh_min` ,
`gh_max` ,
`ph_min` ,
`ph_max` ,
`growth_rate` ,
`growth_min`,
`growth_max`,
`gfactor`,
`period`
FROM `plants`
WHERE continent LIKE 'As'
AND growth_rate LIKE 'slow'
LIMIT 0 , 30

关于mysql_result 返回文件名作为结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15166359/

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