Define a new table for storing binary large objects.
CREATE BLOB TABLE table_name
[CUSTERED [ BY (routing_column) ] INTO num_shards SHARDS ]
[ WITH ( storage_parameter [= value] [, ... ] ) ]
CREATE BLOB TABLE will create a new table for holding BLOBS. For details and examples see Blob Support.
The CLUSTERED and WITH clauses follow the same semantics described under CLUSTERED Clause and WITH Clause.