0

I am currently working on a Cassandra (CQL) database and I use a DBeaver as graphical client.

How can I do alter a table and insert data into that table using only DBeaver?

giampaolo
  • 6,906
  • 5
  • 45
  • 73
Nirali Kavar
  • 956
  • 2
  • 8
  • 17

1 Answers1

0

you must write sql command syntax(CQL Cassandra) for your Cassandra's key-space by -> [in menu] SQL Editor -> New SQL Editor -> write command's ALTER :

ALTER (TABLE | COLUMNFAMILY) "tablename" "instruction"

then click "Execute Statement" above tab SQL code

evergreen
  • 7,771
  • 2
  • 17
  • 25