create table t(
key string,
time timeuuid,
val string
) primary key (key,time)
I found 2 methods.
1 - use COPY. But when using COPY I am getting multiple lines for combination of key,time. I just want unique row keys.
2 - Through code using select *.
Above methods are also slower. Is there a better and faster way to do this ?