· 8 years ago · Jun 27, 2018, 06:34 AM
1create table IF NOT EXISTS sample_table(
2 col1 int,
3 col2 int,
4 col3 int,
5 primary key(col1,col2)
6);
7
8select system.token(col1),col1,col2,col3 from sample_table;
9
10select system.token(col1),col1,col2,col3 from sample_table
11 where token(col1)=-9223372036854775808;