我对网络编程有点陌生。我只研究了一年左右。
我的问题如下。出于某种原因,当我使用此查询(在 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
可能是什么问题呢?