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 删除条件
 
 
posted @ 2019-05-12 14:37  woldcn  阅读(81)  评论(0编辑  收藏  举报