数据库.sql
来自「有意思的程序 1.你传所有文件到你的空间。 2.把数据库文件导入数据库。 」· SQL 代码 · 共 15 行
SQL
15 行
#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 + =
减小字号Ctrl + -
显示快捷键?