File: pgsql.sql

package info (click to toggle)
dbconfig-common 1.8.29%2Betch1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,828 kB
  • ctags: 68
  • sloc: sh: 829; makefile: 483; perl: 12; sql: 12
file content (13 lines) | stat: -rw-r--r-- 267 bytes parent folder | download | duplicates (101)
1
2
3
4
5
6
7
8
9
10
11
12
13
create table foo (
	id	int not null primary key,
	name	varchar(32)
);

create table mytable (
	version	varchar(32) not null primary key
);

insert into foo values (1, 'foo');
insert into foo values (2, 'bar');
delete from mytable;
insert into mytable values ('2.0');