mysql基础

Posted ruowei

tags:

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

  • 数据库
  • 显示所有数据库:show databases
  • 创建数据库:create database 数据库名
  • 选择数据库:use 数据库名
  • 显示当前数据库:select database()
  • 删除数据库:drop database 数据库名
 
  • 创建表:create table 表名(字段名 字段类型 [not null][unique][auto_increment][primary key][comment ‘‘]);
  • 查看表结构:
    • describe 表名
    • show columns 表名
    • show create table 表名
  • 删除表:drop table 表名
  • 删除表内容,保留表结构:truncate table 表名
  • 删除表内容:delete from 表名 where 删除条件
 
 

以上是关于mysql基础的主要内容,如果未能解决你的问题,请参考以下文章

MYSQL养成记-MYSQL基础增强(Myql函数)

mysql数据库之mysql基础命令

mysql基础学习笔记

mysql基础学习笔记

MysQL基础

mysql基础