PHP和MySQL Web開發從新手到高手,第3天-資料庫設計

來源:互聯網
上載者:User

標籤:

這些表在以後會用到.

1. 資料庫設計

  包含如下6個表:

 

2. 每個表的結構

2.1 表`author`

CREATE TABLE `author` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `name` varchar(255) DEFAULT NULL,  `password` char(32) DEFAULT NULL,  `email` varchar(255) DEFAULT NULL,  PRIMARY KEY (`id`)) ENGINE=InnoDB AUTO_INCREMENT=2827009 DEFAULT CHARSET=utf8

2.2 表`authorrole`

CREATE TABLE `authorrole` (  `authorid` int(11) NOT NULL,  `roleid` varchar(255) NOT NULL,  PRIMARY KEY (`authorid`,`roleid`)) ENGINE=InnoDB DEFAULT CHARSET=utf8

2.3 表`category`

CREATE TABLE `category` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `name` varchar(255) DEFAULT NULL,  PRIMARY KEY (`id`)) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8

2.4 表`joke`

CREATE TABLE `joke` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `joketext` text,  `jokedate` date NOT NULL,  `authorid` int(11) DEFAULT NULL,  `visible` enum(‘NO‘,‘YES‘) NOT NULL,  PRIMARY KEY (`id`)) ENGINE=InnoDB AUTO_INCREMENT=72 DEFAULT CHARSET=utf8

2.5 表`jokecategory`

CREATE TABLE `jokecategory` (  `jokeid` int(11) NOT NULL,  `categoryid` int(11) NOT NULL,  PRIMARY KEY (`jokeid`,`categoryid`)) ENGINE=InnoDB DEFAULT CHARSET=utf8

2.6 表`role`

CREATE TABLE `role` (  `id` varchar(255) NOT NULL,  `description` varchar(255) DEFAULT NULL,  PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8

PHP和MySQL Web開發從新手到高手,第3天-資料庫設計

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.