LoginSignup
2
0

More than 5 years have passed since last update.

CQLでCassandraの指定したテーブル内の全レコードを削除する

Last updated at Posted at 2016-02-29

CQL

CQLのDELETE文はWHERE句が必須なので全件削除には使えません. TRUNCATEを用意してくれているので, こちらを使いましょう.

CQL
TRUNCATE keyspace_name.table_name;

DELETEWHERE句付け忘れの事故がなくなる分, 親切かも.

ドキュメント

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0