📄 数据库.sql
字号:
#create the table article
create table article
(
id int not null auto_increment,
title varchar(50) not null,
content text not null,
importtime datetime not null,
writer varchar(20) not null,
click tinyint(4) not null,
parent tinyint(4) not null,
primary key(id),
adda text not null,
fl text not null
);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -