私は私の質問は、私が選択して、更新クエリのWHERE句でfollowDate
を使用することができますどのように、私が試してみましたがされているが、それは動作しません。次のスキーマCassandraのwhere節の日付時刻をPythonドライバを使ってクラスタとして使う方法は?
CREATE TABLE channelFollowers(
channelID BIGINT,
isfavorite BOOLEAN,
userID BIGINT,
followDate TIMESTAMP,
PRIMARY KEY (userID, channelID, followDate)
);
を作成した、Pythonのドライバとカサンドラを使用しています次のエラーが発生します
typeerror: not enough arguments for format string
私はどうしたらよいですか?
は、ここで私はあなたのコード内のエラーメッセージ&に表示されるものと私のコード channelLike = channelSession.execute("update channelfollowers set isblocked=%s, isfavorite=%s where userid=%s and channelid=%s and followdate=%s",[int(userid),int(channel_id),followDate]
コードを表示してください。 –
質問を更新しました – fahad