基本数据库操作

Posted msj513

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基本数据库操作相关的知识,希望对你有一定的参考价值。

针对库的相关操作 

  增
  create database 库名称
  删
  drop database 库名称
  改
  alter database 库名称 要改的属性名称
  alter database db1 DEFAULT CHARACTER SET utf8;
  alter database db1 CHARSET utf8;
  注意 在mysql中 utf-8 不能带- 写成utf8
  查
  show databases查看所有数据库
  show create databases 库名称 查看建库的语句

命名规范:

  1.不能使用纯数字
  2.可以是数字 字母 下滑线的组合
  3.可以下滑线开头
  4.不能是关键字 如create
  大致和python相同
  不区分 大小写

表相关的操作


  建表时要明确数据库
  use db1;
  create table 表名称(字段名 类型(长度),....)
  create table dog(nikename char(10),gender char(1),age int)
  #创建时同时指定数据库
  create table 库名称.表名称(字段名 类型(长度),....)

  drop table 表名;


  alter table 表名称 drop|change|modify|add
  drop 字段名称
  alter table dog drop color;

  change 旧的字段名 新的字段名 新的类型
  alter table dog change gender sex char(2);

  modify 字段名 新的类型
  alter table dog modify color char(5);

  add 字段名称 类型
  alter table dog add color char(10);
重命名表
  rename table 旧表名称 to 新表名称
  rename table dog to dogtable;

修改表的属性
  alter table 表名 属性名 值;
  alter table dogtable DEFAULT CHARSET gbk;


  show tables;查看所有表
  desc 表名称; 查看表结构
  show create table 表名;查建表语句
  记录相关操作

  inert into 表名 values(值1,值2.....)

  delete from 表名 where 字段名称 = 值
  没有条件的话删除全部数据

  update 表名 set 字段名 = 新的值 where 字段名 = 值
  没有条件的话修改全部

  select *from 表名; *表示通配符 查看所有字段
  select 字段名称1,字段名2.. from 表名;



















































以上是关于基本数据库操作的主要内容,如果未能解决你的问题,请参考以下文章

SQL基本操作

JDBC操作数据库的基本操作

MySQL基本操作和基于MySQL基本操作的综合实例项目

数据库_6_SQL基本操作——库操作

Docker 基本操作 数据卷 -- docker 数据卷基本操作挂载数据卷

Mongo 基本操作