数据库
首页 > 数据库> > MySQL数据库与表基础总结

MySQL数据库与表基础总结

作者:互联网

一、数据库基础操作

1.查询数据库

show databases;

2.创建数据库

create database (if not exits) 数据库名;

3.使用数据库

use 数据库名;

4.删除数据库

drop database (if exits) 数据库名;

二、表的操作用法

1.创建表

create table 表名;

2.查询所有表名

show tables;

3.查询表结构

desc 表名;

方式一:show create table 表名;

方式二:show full columns from 表名;

4.删除表

删除单张表:drop table (if exits) 表名;

删除多张表:drop table 表1,表2;

5.修改表结构

5.1添加字段

alter table 表名 change add column 列名 列类型 comment备注信息;

5.2删除字段

alter table 表名 drop column 列名;

5.3修改字段

alter table 表名 change 原字段名 新字段名 类型 comment备注信息;

5.4 修改表名

alter table 旧表名 rename 新表名;

5.5 修改表的编码格式

alter table 表名 convert to character set utf8b4;

标签:与表,drop,show,数据库,MySQL,表名,table,alter
来源: https://blog.csdn.net/weixin_45980299/article/details/123096067