Refer to the CQL documentation. Describe if the table / schema / keyspace is expecting.
describe table keyspace.tablename
Its also a cqlsh command, not the actual cql command. Request system tables to get this information. try
select * from system.schema_columns;
- or for more recent versions -
select * from system_schema.columns ;
if php driver might want to check http://datastax.imtqy.com/php-driver/features/#schema-metadata
source
share