⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 create_database.sql

📁 《PHP和MySQL Web开发》(第三版) Source
💻 SQL
字号:
create database mail;use mail;create table users(  username char(16) not null primary key,  password char(40) not null,  address char(100) not null,  displayname char(100) not null);create table accounts(  username char(16) not null,  server char(100) not null,  port int not null,  type char(4) not null,  remoteuser char(50) not null,  remotepassword char(50) not null,  accountid int unsigned not null auto_increment primary key);grant select, insert, update, deleteon mail.*to mail@localhost identified by 'password';

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -