Difference between revisions of "Database Table: email"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'email =Definition= <source lang="sql"> CREATE TABLE email ( userid INT UNSIGNED NOT NULL PRIMARY KEY, email VARCHAR(50), INDEX (e...')
 
m (reformat, right category)
Line 1: Line 1:
[[Category: Database Table|email]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE email (
 
CREATE TABLE email (
Line 9: Line 9:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
[[Global database]]
 
[[Global database]]
 +
 +
[[Category: Database Tables|email]]

Revision as of 21:02, 26 March 2009

Definition

CREATE TABLE email (
   userid    INT UNSIGNED NOT NULL PRIMARY KEY,
   email     VARCHAR(50),
   INDEX     (email)
)

Relationships

Location

Global database