数据库 增删改查

# show databases;//查看所有数据库

# 退出命令

#exit,quit,\q

#创建数据库

#create database mydatabase charset utf-8;

#创建关键字数据库

#create database `database` charset utf-8;

#告诉服务器当前的中文字符集是什么

#set names gbk;

#创建中文数据库

#create database 中国 charset utf-8;

#创建数据库

#create database informationtest charset utf-8;

#查看以information_开始的数据库(_需要被转义)

# show databases like `information\_%`;

# show databases like `information_%`; 相当于information%

#查看数据库的创建语句

#show create database mydatabase;

# show create database `database`;

# 修改数据库informationtest的字符集

# alter database informationtest charset GBK;

# 删除数据库

# drop database informationtest;

# 创建表

# create table if not exists mydatabase.student(

# 显式地将student表放到mydatabase数据库下

# name varchar(10),

# gender varchar(10),

# number varchar(10),

# age int

# )charset utf-8;

# 创建数据库

# 进入数据库

# use mydatabase;

# 创建表

# create table class(

# name varchar(10),

# room varchar(10),

# )charset utf-8;

# 查看所有表

# show tables;

# 查看以s结尾的表

# show table like `%s`;

# 查看表的创建语句

# show create table student;

# show create table student\g

# show create table student\G  将查到的结构旋转90度变成纵向

# 查看表结构

# desc class;

# describe class;

# show columns from class;

# 重命名表(student表 -> my_student)

# rename table student to my_student;

# 修改表选项:字符集

# alter table my_student charset = GBK;

# 给学生表添加ID,放到第一个位置

# alter table my_student

# add column id int

# first;

# 将学生表中的number学号字段变成固定长度,且放到第二位(id之后)

# alter table my_student modify number char(10) after id;

# 修改学生表中的阿gender字段为sex

# alter table my_student change genter sex varchar(10);

# 删除学生表中的age年龄字段

# alter table my_student drop age;

# 删除数据表

# drop table class;

# 插入数据

# insert into my_student values

# (1,'bc20190001','Jim','male'),

# (2,'bc20190002','Lily','female');

# 插入数据:指定文字列表

# insert into my_student(number,sex,name,id) values

# ('bc20190003','male','Tom',3),

# ('bc20190004','female','Lucy',4);

# 查看所有数据

# select * from my_student;

# 查看指定字段,指定条件的数据

# 查看满足id为1的学生信息

# select id,number,sex,name from my_student where id=1;

# 更新数据

# update my_student set sex='female' where name='Jim';

# 删除数据

# delete from my_student [where条件];

你可能感兴趣的:(数据库 增删改查)