Reputation: 57
How we create table in Riak TS for auto_increment id such as in mysql we create:::as example---
create table Department(id int auto_increment not null,departmentName varchar(9));
is there any way to create table with AUTO_INCREMENT
CAN ANYONE TELL ME ?
Upvotes: 0
Views: 148
Reputation: 1001
Riak TS (as of version 1.4) does not feature the ability to create an auto incrementing ID. I highly recommend reading the Riak TS documents for more information. The following page will give you a good introduction to creating tables and the supported data types: http://docs.basho.com/riak/ts/latest/using/planning/
Upvotes: 1