File: 10_cleanup.sql

package info (click to toggle)
liborlite-perl 1.97-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 524 kB
  • sloc: perl: 3,693; sql: 97; makefile: 2
file content (8 lines) | stat: -rw-r--r-- 247 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
create table table_one (
	col1 integer not null primary key,
	col2 string
);

insert into table_one ( col1, col2 ) values ( 1, 'a' );
insert into table_one ( col1, col2 ) values ( 2, 'b' );
insert into table_one ( col1, col2 ) values ( 3, null );