我正在使用 python 驱动程序和 Cassandra,我创建了以下架构
CREATE TABLE channelFollowers(
channelID BIGINT,
isfavorite BOOLEAN,
userID BIGINT,
followDate TIMESTAMP,
PRIMARY KEY (userID, channelID, followDate)
);
我的问题是,如何使用followDate
select 和 update 查询的 in where 子句,我已经尝试过,但它不起作用它给出以下错误
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]