使用MySQL
2021-4-3
| 2023-8-2
0  |  阅读时长 0 分钟
type
status
date
slug
summary
tags
category
icon
password
Property
 

使用MySQL

连接MySQL

登录mysql数据库管理系统,dos命令窗口:
notion image
注:
  • 命令输入在mysql>之后
  • 命令用;\g结束,仅按Enter不执行命令
  • 输入help\h获得帮助,也可以获得特定命令的帮助(如,输入help select获得使用SELECT语句的帮助)
  • 输入quitexit退出命令行实用程序
  • \c 命令,结束一条语句
mysql远程登录:
 
 

选择数据库

查看有哪些数据库
notion image
 
创建属于我们自己的数据库
notion image
 
 
使用bjpowernode数据
notion image
 
查看当前使用的数据库中有哪些表?
notion image
 
 

导入数据

初始化数据:
notion image
 
数据初始化完成之后,有三张表:
notion image
 
show也可以用来显示表列:
notion image
 
MySQL支持用DESCRIBE作为SHOW COLUMNSFROM的一种快捷方式:
notion image
 
 
所支持的其他SHOW语句还有:
  • SHOW STATUS,用于显示广泛的服务器状态信息
  • SHOW CREATE DATABASE和SHOW CREATE TABLE,分别用来显示创建特定数据库或表的MySQL语句
  • SHOW GRANTS,用来显示授予用户(所有用户或特定用户)的安全权限
  • SHOW ERRORS和SHOW WARNINGS,用来显示服务器错误或警告消息
 

sql脚本

当一个文件的扩展名是.sql,并且该文件中编写了大量的sql语句,称这样的文件为sql脚本。
直接使用source命令可以执行sql脚本。
sql脚本中的数据量太大的时候,无法打开,请使用source命令完成初始化。
 

删除数据库

 
 

查看表结构

notion image
notion image
notion image
 

表中的数据

notion image
notion image
notion image
 

常用命令

notion image
 
 
notion image
 
 
 

查看创建表的语句

notion image
  • MySQL
  • 子查询PriorityQueue
    目录