Mysql的基本操作

  • Post author:
  • Post category:mysql



一、数据库,数据表的基本操作



1、数据库的基本操作

a.创建一个数据库,名字为“class”

1| create database class;

   
   
  • 1

b.展示所创建的数据库基本信息MYSQL命令

2| show create database class;

   
   
  • 1

c.删除该数据库

3|drop database class;

   
   
  • 1

d.查询所有的数据库

show databases;

   
   
  • 1

e.将数据库的字符修改为gkd MYSQL 命令

alter database class character set gbk;

   
   
  • 1

f.使用该数据库

use class;

   
   
  • 1


二、数据表的基本操作

a.创建数据表

 create table student(
 id int,
 name varchar(20),
 gender varchar(10),
 birthday date
 );

   
   
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

b.查看数据表的名称

show tables;

   
   
  • 1

c.查表的基本信息 MySQL命令

show create table student;

   
   
  • 1

d.查看表的字段信息 MySQL命令

desc student;

   
   
  • 1

e.删除数据表

drop table student;

   
   
  • 1


三、修改数据表

a.修改数据表的名字

alter table student rename to stu;

   
   
  • 1

b.修改字段名

alter table stu change name sname varchar(10);

   
   
  • 1

c.修改字段的类型

alter table stu modify sname int;

   
   
  • 1

d.增加字段

alter table stu add address varchar(50);

   
   
  • 1

e.删除字段

alter table stu drop address;

   
   
  • 1


四、插入数据

为表中所有字段插入数据

insert into student (id,name,age,gender) values (1,'bob',16,'male');

   
   
  • 1

转载:https://blog.csdn.net/shc943067636/article/details/123406312