Difference between revisions of "Database Table: knob"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'keywords =Definition= <source lang="sql"> CREATE TABLE keywords ( kwid int(10) unsigned NOT NULL auto_increment, keyword varchar(80) binary NOT N...')
 
m (reformat, right category)
Line 1: Line 1:
[[Category: Database Table|keywords]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE keywords (
 
CREATE TABLE keywords (
Line 10: Line 10:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
[[Global database]]
 
[[Global database]]
 +
 +
[[Category: Database Table|knob]]

Revision as of 20:44, 26 March 2009

Definition

CREATE TABLE keywords (
  kwid INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
  keyword VARCHAR(80) BINARY NOT NULL DEFAULT '',
  PRIMARY KEY  (kwid),
  UNIQUE KEY kwidx (keyword)
)

Relationships

Location

Global database