Difference between revisions of "Database Table: zip"
From Dreamwidth Notes
(Created page with 'zip =Definition= <source lang="sql"> CREATE TABLE zip ( zip varchar(5) NOT NULL default '', state char(2) NOT NULL default '', city varchar(100...') |
Foxfirefey (Talk | contribs) m (reformat, right category) |
||
Line 1: | Line 1: | ||
− | + | = Definition = | |
− | =Definition= | + | |
<source lang="sql"> | <source lang="sql"> | ||
CREATE TABLE zip ( | CREATE TABLE zip ( | ||
Line 11: | Line 11: | ||
</source> | </source> | ||
− | =Relationships= | + | = Relationships = |
+ | |||
+ | = Location = | ||
− | |||
[[Global database]] | [[Global database]] | ||
+ | |||
+ | [[Category: Database Tables|zip]] |
Revision as of 20:40, 26 March 2009
Definition
CREATE TABLE zip ( zip VARCHAR(5) NOT NULL DEFAULT '', state CHAR(2) NOT NULL DEFAULT '', city VARCHAR(100) NOT NULL DEFAULT '', PRIMARY KEY (zip), KEY (state) ) PACK_KEYS=1