Since Cassandra is NoSQL we cannot assume consistancy accross tables (we may have the same value in n tables).
Therefore, we need to use batch
statements which are precreated queries that run accross multiple tables.
An example of a batch statement is:
BEGIN BATCH
INSERT INTO userpage_posts (username, datestamp) VALUES ('user1', '2020-01-01');