File: 02_basics.sql

package info (click to toggle)
liborlite-mirror-perl 1.24-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 312 kB
  • sloc: perl: 2,347; sql: 8; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 262 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
create table table_one (
	col1 integer not null primary key,
	col2 string
);

insert into table_one ( col1, col2 ) values ( 1, 'foo' );

insert into table_one ( col2 ) values ( 'bar' );

insert into table_one ( col2 ) values ( 'bar' );

pragma user_version = 7;