Is it possible to have an alias for a table in Cassandra? DataStax Enterprise version we are using is 3.2.1
Your help will greatly be appreciated.
For ex:
select s from example s where s.id='1234';
Unfortunately there is no way to alias tables in Apache Cassandra. You can alias returned column names using as (reference), i.e.:
SELECT event_id, dateOf(created_at) as creation_date, blobAsText(content) as content FROM timeline;
Howver, you cannot alias tables.