You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CREATE.sql 220B

123456789
  1. CREATE TABLE transactions(
  2. tx_id bigint,
  3. address TEXT,
  4. value bigint,
  5. tx_hash TEXT,
  6. block_id bigint,
  7. timestamp TIMESTAMP,
  8. PRIMARY KEY (tx_id, address)
  9. ) WITH CLUSTERING ORDER BY (address DESC);