卡桑德拉查询收到错误



>朋友 我在执行以下查询时收到此错误: 意外标记"("附近的语法错误帮帮我。。。

 INSERT INTO table_name(account_sid, transcription_id, audio_url, call_sid, callback_method, callback_url, cost, duration, recording_sid, status, transcription_change_date, transcription_date, transcription_sid, transcription_text, type) VALUES ('534534534534535', now(), '', '', '', '','', '', '', '', '', '', '', '', '');

Type 是 CQL 中的一个关键字,因此它失败了。您可以使用双引号进行转义。

 INSERT INTO table_name(account_sid, transcription_id, audio_url, call_sid, callback_method, callback_url, cost, duration, recording_sid, status, transcription_change_date, transcription_date, transcription_sid, transcription_text, "type") VALUES ('534534534534535', now(), '', '', '', '','', '', '', '', '', '', '', '', '');

CQL 中的关键字列表

最新更新