使用的数据库是MySQL,所以首先要在MySQL中创建database和表。建立数据库article_db,建立表blog,如下:
create database article_db; use article_db; create table blog ( id int auto_increment not null primary key, title varchar(100), content text );
时间: 2024-10-25 08:53:08
使用的数据库是MySQL,所以首先要在MySQL中创建database和表。建立数据库article_db,建立表blog,如下:
create database article_db; use article_db; create table blog ( id int auto_increment not null primary key, title varchar(100), content text );