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