gpt4 book ai didi

cassandra - 如何在 cassandra CQL 3 命令行中自动生成 uuid

转载 作者:行者123 更新时间:2023-12-03 01:24:33 25 4
gpt4 key购买 nike

刚学cassandra,有没有办法使用CQL插入UUID,即

create table stuff (uid uuid primary key, name varchar);
insert into stuff (name) values('my name'); // fails
insert into stuff (uid, name) values(1, 'my name'); // fails

你能做类似的事情吗

insert into stuff (uid, name) values(nextuid(), 'my name');

最佳答案

截至Cassandra 2.0.7你可以只使用 uuid(),它会生成一个随机类型 4 UUID:

INSERT INTO users(uid, name) VALUES(uuid(), 'my name');

关于cassandra - 如何在 cassandra CQL 3 命令行中自动生成 uuid,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17945341/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com