SQLite Forum

Error: near "returning": syntax error
Login
```
create table test(id integer primary key);
insert into test default values returning id;
```

Shouldn't this return a single row with a single column with a value of 1?