Hi@akhtar,
To create table in cassandra, you have to create keyspace first.
$ create keyspace University with replication = {'class' :'NetworkTopologyStrategy','replication_factor':1};
create table University.student (
   ... Roll No int,
   ... Name text,
   ... dept text,
   ... primary key(Roll No)
   ... );
Hope this helps!!
Enroll with our Cassandra training online to learn more.
Thank You