5 lines
105 B
SQL
5 lines
105 B
SQL
create table withrowidbutnotprimarykey (
|
|
rowid integer not null,
|
|
a integer primary key
|
|
) strict;
|