![]() |
VOOZH | about |
In this article, we will discuss several functions that are supported by CQL in Cassandra which can help in converting one value type into another new value directly by using the function. In Cassandra, there are several functions that are supported by CQL which helps in many ways such that there is a scenario where we want to find the TTL value of a column with the help of TTL function we can easily do that.
Letβs discuss WRITETIME function. WRITETIME : The WRITETIME function is very useful in Cassandra query language when write occurred then we can retrieve the date/time of writes to the columns. We can use WRITETIME function in the select statement followed by the non-partitioning column in parenthesis. In Cassandra Query Language a table contains the timestamp to represents date and time that a write occurred to a column. After return the query it gives WRITETIME function value in microseconds and then we can convert it into date/time formats. Let's understand with an example.
CREATE TABLE function_test ( Id int, Name text, Address text, PRIMARY KEY(Id) );
To insert data into the table used the following CQL query.
INSERT INTO function_test (Id, Name, Address) VALUES (201, 'Ashish', 'Delhi'); INSERT INTO function_test (Id, Name, Address) VALUES (202, 'Rana', 'Mumbai'); INSERT INTO function_test (Id, Name, Address) VALUES (203, 'Abi', 'Noida');
To read the data used the following CQL query.
SELECT * FROM function_test;
Output: π Image
To determine the WRITETIME function Value used the following CQL query.
SELECT WRITETIME (Address) FROM function_test;
Output: π Image
To determine the WRITETIME function by using WHERE clause used the following CQL query.
SELECT WRITETIME (Address) FROM function_test where Id=201;
Output: π Image
Cassandra Query Language (CQL) is the query language used to interact with Cassandra databases. In addition to the standard SQL-like syntax for querying and modifying data in Cassandra, CQL also provides a set of built-in functions that can be used to perform various operations on data. Here are some of the additional functions in CQL:
These functions provide additional functionality beyond basic data querying and manipulation in CQL. By using these functions in conjunction with standard CQL commands, developers and administrators can create more powerful and sophisticated queries and data processing pipelines in Cassandra.