create_database.sql
来自「php源码 php源码参考」· SQL 代码 · 共 27 行
SQL
27 行
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 + =
减小字号Ctrl + -
显示快捷键?