File: sqlite_seq_test.sql

package info (click to toggle)
tntdb 1.4-2
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 1,632 kB
  • sloc: cpp: 15,806; makefile: 261; ansic: 260; sql: 158; sh: 11
file content (10 lines) | stat: -rw-r--r-- 180 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
create table foo
(
    a integer not null primary key autoincrement,
    b integer not null
);

insert into foo (b) values (3);
insert into foo (b) values (7);

select * from foo;