2017-08-30 63 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