寒假日记-第二天(MySQL语句)

Posted 刘应军

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了寒假日记-第二天(MySQL语句)相关的知识,希望对你有一定的参考价值。

mysql语句:

DDL(操作数据库和表):

1.操作数据库

显示数据库
show databases;

#判断是否存在数据库wpj1105,有的话先删除
drop database if exists wpj1105;

#创建数据库
create database wpj1105;

#删除数据库
drop database wpj1105;

#使用该数据库
use wpj1105;

2.操作数据表

#显示数据库中的表
show tables;

#先判断表是否存在,存在先删除
drop table if exists student;

#创建表
create table student(
id int auto_increment primary key,
name varchar(50),
sex varchar(20),
date varchar(50),
content varchar(100)
)default charset=utf8;

#删除表
drop table student;

#查看表的结构
describe student;  #可以简写为desc student;

DML(增删改表中的数据):

插入数据
insert into student values(null,‘aa‘,‘男‘,‘1988-10-2‘,‘......‘);
insert into student values(null,‘bb‘,‘女‘,‘1889-03-6‘,‘......‘);
insert into student values(null,‘cc‘,‘男‘,‘1889-08-8‘,‘......‘);
insert into student values(null,‘dd‘,‘女‘,‘1889-12-8‘,‘......‘);
insert into student values(null,‘ee‘,‘女‘,‘1889-09-6‘,‘......‘);
insert into student values(null,‘ff‘,‘null‘,‘1889-09-6‘,‘......‘);
#查询表中的数据
select * from student;
select id,name from student;

#修改某一条数据
update student set sex=‘男‘ where id=4;

#删除数据
delete from student where id=5;

DQL(查询表中的数据):

#查询表中的数据
select * from student;
select id,name from student;

DCL(授权):

以上是关于寒假日记-第二天(MySQL语句)的主要内容,如果未能解决你的问题,请参考以下文章

Mysql学习第二天

Mysql学习日记-03sql语句练习

Mysql学习日记-02外键 ,索引, sql语句的补充

Python学习日记(四十) Mysql数据库篇 八

每个时段的 MySQL 查询小计,小时从当天下午 2 点到第二天下午 2 点

Mysql学习日记-04pymysql的运用