MySQL命令行基础操作


  • show databases; => 显示所有数据库

  • use 数据库名; => 切换数据库

  • show tables; => 显示当前数据库中的所有表

  • describe 表名; => 显示数据表结构

  • drop database 数据库名; => 删除数据库

  • drop table 表名; => 删除数据表

你可能感兴趣的:(MySQL命令行基础操作)