Cassandra删除数据记录

DELETE命令用于从Cassandra表中删除数据。 您可以使用此命令删除完整的表或选定的行。

语法:

DELETE FROM <identifier> WHERE <condition>;

下面举个例子来演示如何从Cassandra表中删除数据。 我们有一个名为“student”的表其中列(student_idstudent_feesstudent_name),这个表中具有以下数据。

cqlsh:zyiz_ks> SELECT * FROM student;

 student_id | student_fees | student_name
------------+--------------+--------------
|         5000 |        Maxsu
|        10000 |      XunWang
|         2000 |       Modlee

(3 rows)
cqlsh:zyiz_ks>

删除整行

要删除student_id3的整行记录,请使用以下命令:

DELETE FROM student WHERE student_id=3;

在执行上面语句之后,student_id3 的行记录已被删除。 您可以使用SELECT命令验证它。

cqlsh:zyiz_ks> SELECT * FROM student;

 student_id | student_fees | student_name
------------+--------------+--------------
|         5000 |        Maxsu
|        10000 |      XunWang
|         2000 |       Modlee

(3 rows)
cqlsh:zyiz_ks> DELETE FROM student WHERE student_id=3;
cqlsh:zyiz_ks> SELECT * FROM student;

 student_id | student_fees | student_name
------------+--------------+--------------
|         5000 |        Maxsu
|        10000 |      XunWang

(2 rows)
cqlsh:zyiz_ks>

删除一个特定的列名

示例:

删除student_id2的记录中的student_fees列中的值。

DELETE student_fees FROM student WHERE student_id=2;

现在删除 您可以验证:

cqlsh:zyiz_ks> SELECT * FROM student;

 student_id | student_fees | student_name
------------+--------------+--------------
|         5000 |        Maxsu
|        10000 |      XunWang

(2 rows)
cqlsh:zyiz_ks> DELETE student_fees FROM student WHERE student_id=2;
cqlsh:zyiz_ks> SELECT * FROM student;

 student_id | student_fees | student_name
------------+--------------+--------------
|         5000 |        Maxsu
|         null |      XunWang

(2 rows)
cqlsh:zyiz_ks>

上一篇:Cassandra更新数据

下一篇:Cassandra集合

关注微信小程序
程序员编程王-随时随地学编程

扫描二维码
程序员编程王

扫一扫关注最新编程教程