gt; Best,
> Angelo
>
> On Wed, Sep 29, 2021 at 3:48 AM Yu-Wei Su
> wrote:
>
>> Hi,
>>
>> I am thinking of using the Cassandra trigger to delete or update data
>> right after they are inserted.
>>
>> First, I tried deleting the data.
>>
>>
Hi,
I am thinking of using the Cassandra trigger to delete or update data right
after they are inserted.
First, I tried deleting the data.
This is my table.
```
CREATE TABLE mykeyspace.mytable (
mycolumn text PRIMARY KEY
)
```
and this is my trigger
```
public class MyTrigger implements I