I want to know if there is any way to perform wildcard searches in cassandra database. e.g.
select KEY,username,password from User where username='\*hello*';
Or
select KEY,username,password from User where username='%hello%';
something like this.