非常新的CQL(Cassendra).插入记录时出现此错误,
InvalidRequest:code = 2200 [无效查询] message ="unconfigured table employess"
这些是发出的命令,我错过了什么.(我正在尝试这个Cassendra CQL shell)
CREATE KEYSPACE people WITH replication = {'class': 'SimpleStrategy', 'replication_factor': '3'} AND durable_writes = true;
USE people;
CREATE Table employees(id uuid,name varchar,PRIMARY KEY(id, email));
cqlsh:people> insert into employess (id,name,email) values (now(),'Jon Don','jd@gmail.com');
Run Code Online (Sandbox Code Playgroud)