File: 21_normalize.sql

package info (click to toggle)
liborlite-perl 1.98-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 516 kB
  • ctags: 280
  • sloc: perl: 3,688; sql: 97; makefile: 2
file content (9 lines) | stat: -rw-r--r-- 158 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
create table tableOne (
	columnID integer not null primary key,
	ColumnTwo string
);

create table foo (
	foo_id integer not null primary key,
	name string
)