Advertisement
Guest User

Untitled

a guest
Mar 4th, 2015
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. cqlsh:test> create table test (id int, a ascii, t text, primary key(id));
  2. cqlsh:test> insert into test (id, a, t) values (1, 'ascii', 'text');
  3. cqlsh:test> insert into test (id, a, t) values (2, 'a', 't');
  4. cqlsh:test> select * from test;
  5.  
  6. id | a | t
  7. ----+-------+------
  8. 1 | ascii | text
  9. 2 | a | t
  10.  
  11. (2 rows)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement