显示数据库
show databases;
判断是否存在数据库user,有则先删除
drop database if exists user;
创建数据库user
create database user;
使用数据库user
use user;
删除数据库user
drop database user;
显示数据库中的表;
show tables;
判断表(stu)是否存在,存在先删除
drop table if exists stu ;
创建表
create table stu(
id int auto_increment Primarykey,
name varchar(),
sex varchar(),
data varchar(),
content varchar()
)default charset = utf8;
删除表
drop table stu;
查看表结构
describe stu; 简写:desc stu;
查询表中数据;
select*from stu; stu表中所有数据
select id,name from stu; 查询表中id,name的数据
修改某一条数据
update stu set sex='男' where id = 4;
插入表数据
insert into stu values (需要填的值)