I need to convert the following condition into cassandra query

20 Views Asked by At
SELECT * 
FROM NOTIFICATION.ADMIN_MESSAGE_TITLE 
WHERE ORGANIZATIONID = ?0 
  AND ((STARTTS >= ?1 AND STARTTS <= ?2) 
       OR (ENDTS >= ?1 AND ENDTS <= ?2))

These conditions should be converted into a Cassandra query. Can anyone help me with this?

0

There are 0 best solutions below