topical media & game development
professional-sql-05-sql-tables.sql / sql
DROP TABLE IF EXISTS WROX_CALENDAR;
CREATE TABLE WROX_CALENDAR (
EVENT_ID INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
EVENT_NAME VARCHAR(100) NOT NULL,
EVENT_TSTAMP TIMESTAMP NOT NULL,
NOTIFY TINYINT(1) UNSIGNED NOT NULL DEFAULT 0,
PRIMARY KEY (EVENT_ID)
)
ENGINE=MyISAM DEFAULT CHARACTER SET latin1
COLLATE latin1_general_cs;
(C) Æliens
20/2/2008
You may not copy or print any of this material without explicit permission of the author or the publisher.
In case of other copyright issues, contact the author.