5 lines
81 B
SQL
5 lines
81 B
SQL
create table test(
|
|
a bigint auto_random(10),
|
|
b int,
|
|
primary key(a)
|
|
); |