i have the following select:
select * from system.schema_columns where keyspace_name = 'automotive' and columnfamily_name = 'cars';
and i want to insert data returned by this into another table with some modifications:
-i want to insert the data type of column
-remove audit columns like created_at, created_by etc..
in my sql we can do this by:
insert into formUtil(table_name, column_name, ordinal_position, is_nullable, data_type)
SELECT
col.table_name,
col.column_name,
col.ordinal_position,
case when col.is_nullable = 'YES' then 1 else 0 end,
col.data_type
from
information_schema.COLUMNS col
where
col.table_schema = 'i2cwac' and
col.column_name not in ('id','modifiedAt','modifiedBy','createdAt','createdBy') and
col.table_name = 'users';
how we can do this in cassandra ?