2017-08-30 65 views
0

早安,

,我发现了以下错误:

errordetail:串400错误的请求

filecontent:

string {“message”:“查询协调器错误:query.soql.no-such-column;没有这样的列:T;位置:Map(行 - > 1,列 - > 1020,行 - >”SELECT physician_profile_idphysician_profile_first_namephysician_profile_middle_namephysician_profile_last_namephysician_profile_suffixphysician_profile_alternate_first_namephysician_profile_alternate_middle_namephysician_profile_alternate_last_namephysician_profile_alternate_suffixphysician_profile_address_line_1physician_profile_address_line_2physician_profile_cityphysician_profile_statephysician_profile_zipcodephysician_profile_country_namephysician_profile_province_namephysician_profile_primary_specialtyphysician_profile_ops_taxonomy_1physician_profile_ops_taxonomy_2physician_profile_ops_taxonomy_3physician_profile_ops_taxonomy_4physician_profile_ops_taxonomy_5physician_profile_license_state_code_1physician_profile_license_state_code_2physician_profile_license_state_code_3physician_profile_license_state_code_4physician_profile_license_state_code_5WHERE starts_with(physician_profile_first_name,A AND physician_profile_city ='KNOXVILLE'和physician_profile_last_name ='ADAM S'AND physician_profile_state ='TN'LIMIT 10}

我试图做的是拉医生的姓氏亚当斯,谁是在田纳西州诺克斯维尔的A的第一首字母。 AND'physician_profile_first_name'='A'将是不正确的。有什么建议么?我使用CFHTTP GET在Cold Fusion中对此进行了编码,以防万一。

谢谢 CL

回答

0

根据您糊(No such column)如果引用并不在查询中存在的列中显示的错误消息。检查查询中的字段名称与数据集中的字段名称以确保它们全部有效。

+0

是的,由于试图使用$ where子句。一直未能找出如何找到第一个名字以字母A开头的实例。 – CLindy