Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我找不到按秒或列名的任何其他部分获取列的方法,例如,如果我有
user_id:时间戳
如何按时间戳选择该列并完全忽略 user_id?
这是我现在使用的代码:
$slice = new ColumnSlice( array('user_id'), "", 1); $row = $cf->get("key", $slice);
谢谢你。
你不能。您必须指定切片的开始值和结束值,这意味着至少指定第一个复合值。
相反,您可以这样做,但您必须选择所有列并在客户端测试每个列值是否满足过滤条件。