I'm trying to do a select with cql in which I want a new column to be added to the results with its cells set to some specific value, as it is done in sql in the following question: Relevant question
SELECT
hat,
shoe,
boat,
0 as placeholder
FROM
objects
Is this possible? Thanks for your help!