Difference between revisions of "Database Table: schools attended"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'schools_attended =Definition= <source lang="sql"> CREATE TABLE `schools_attended` ( `schoolid` int(10) unsigned NOT NULL default '0', `userid` in...')
 
Line 1: Line 1:
[[Category: Database Table|schools_attended]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE `schools_attended` (
 
CREATE TABLE `schools_attended` (
Line 11: Line 11:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
[[Global database]]
 
[[Global database]]
 +
 +
[[Category: Database Tables|schools_attended]]

Revision as of 18:32, 31 March 2009

Definition

CREATE TABLE `schools_attended` (
  `schoolid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  `userid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  `year_start` SMALLINT(5) UNSIGNED DEFAULT NULL,
  `year_end` SMALLINT(5) UNSIGNED DEFAULT NULL,
  PRIMARY KEY  (`schoolid`,`userid`)
)

Relationships

Location

Global database