测试开发技术网站
博客
设计
设计
开发
Python
测试
unittest
运维
Linux基础应用
CI/CD
CI/CD
数据库
数据库
云计算
云计算
云原生
云原生
爬虫
爬虫
数据分析
数据分析
人工智能
人工智能
登录
注册
MySQL----MySQL数据库常用的操作命令
收藏本文
作者:redrose2100 类别: 日期:2022-05-05 03:16:40 阅读:793 次 消耗积分:0 分
### 1、数据库的常用操作 * 登录mysql数据库 ```bash mysql -uroot -p # 然后输入密码: ``` 如: ```bash root@a8226422817e:/# mysql -uroot -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1094 Server version: 5.7.36 MySQL Community Server (GPL) Copyright (c) 2000, 2021, Oracle and/or its affiliates. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> ``` * 退出数据库 ```bash exit; ``` * 查看有哪些数据库: ```bash show databases; ``` 如: ```bash mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | blog_redrose2100 | | mysql | | performance_schema | | sys | +--------------------+ 5 rows in set (0.01 sec) mysql> ``` * 查看数据库的当前时间 ```bash select now(); ``` 如: ```bash mysql> select now(); +---------------------+ | now() | +---------------------+ | 2022-05-05 03:08:39 | +---------------------+ 1 row in set (0.00 sec) mysql> ``` * 查看当前数据安装软件的版本 ```bash select version(); ``` 如: ```bash mysql> select version(); +-----------+ | version() | +-----------+ | 5.7.36 | +-----------+ 1 row in set (0.00 sec) mysql> ``` * 创建数据库 ```bash create database 数据库名 charset=utf8; ``` 如: ```bash mysql> create database demo charset=utf8; Query OK, 1 row affected (0.01 sec) mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | blog_redrose2100 | | demo | | mysql | | performance_schema | | sys | +--------------------+ 6 rows in set (0.00 sec) mysql> ``` * 删除数据库 ```bash drop database 数据库名; ``` 如: ```bash mysql> drop database demo; Query OK, 0 rows affected (0.00 sec) mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | blog_redrose2100 | | mysql | | performance_schema | | sys | +--------------------+ 5 rows in set (0.00 sec) mysql> ``` * 查看当前的数据库 ```bash select database(); ``` 如: ```bash mysql> select database(); +------------+ | database() | +------------+ | NULL | +------------+ 1 row in set (0.00 sec) mysql> ``` * 使用数据库 ```bash use 数据库名; ``` 如: ```bash mysql> use blog_redrose2100; Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A Database changed mysql> select database(); +------------------+ | database() | +------------------+ | blog_redrose2100 | +------------------+ 1 row in set (0.00 sec) mysql> ```
始终坚持开源开放共享精神,同时感谢您的充电鼓励和支持!
版权所有,转载本站文章请注明出处:redrose2100, http://blog.redrose2100.com/article/89
上一篇:
MySQL----MySQL中的数据类型和约束
下一篇:
MySQL----MySQL中数据表的常用操作命令
搜索
个人成就
出版书籍
《Pytest企业级应用实战》
测试开发技术全栈公众号
测试开发技术全栈公众号
DevOps技术交流微信群
加微信邀请进群
常用网站链接
开源软件洞察
云原生技术栈全景图
Python语言官方文档
Golang官方文档
Docker官方文档
Jenkins中文用户手册
Scrapy官方文档
VUE官方文档
Harbor官方文档
openQA官方文档
云原生开源社区
开源中国
Kubernetes中文文档
Markdown语法官方教程
Kubernetes中文社区
Kubersphere官方文档
BootStrap中文网站
JavaScript中文网
NumPy官方文档
Pandas官方文档
GitLink确实开源网站
数据库排名网站
编程语言排名网站
SEO综合查询网站
数学加减法练习自动生成网站
Kickstart Generator
文章分类
最新文章
最多阅读
特别推荐
×
Close
登录
注册
找回密码
登录邮箱:
登录密码:
图片验证码:
注册邮箱:
注册密码:
邮箱验证码:
发送邮件
注册邮箱:
新的密码:
邮箱验证码:
发送邮件