📄 create_database.sql
字号:
create database discussion;use discussion;create table header( parent int not null, poster char(20) not null, title char(20) not null, children int default 0 not null, area int default 1 not null, posted datetime not null, postid int unsigned not null auto_increment primary key);create table body( postid int unsigned not null primary key, message text);grant select, insert, update, deleteon discussion.*to discussion@localhost identified by 'password';
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -