1、丢弃指定的数据库,如果存在的话
drop database if exists jd;
2、创建新的数据库
create database jd;
3、进入创建的数据库
use jd;
4、创建保存数据的表
create table student(
sid int,
name varchar(8),
sex varchar(1),
score int
);
5、插入数据
insert into student values('1','tom','m','87');
6、查询数据
select * from student;