mysql

Posted P_PlusUltra

tags:

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

1. 进入mysql
mysql -u root -p
然后输入密码。
如果密码输错了,会报‘ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)’错误。
错误解决方案看这里吧:    https://blog.csdn.net/qq_32786873/article/details/79225039
2.退出mysql
exit or quit

3.创建数据库
create database <数据库名>;       ->这个分号很重要啊,注意别用中文分号,看仔细点。

4.显示数据库
show databases; 

5.删除数据库:
drop database <数据库名称>;    

6.使用数据库
use <数据库名称>;

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

从mysql的片段中加载ListView

连接MySQL出现错误:ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: YES)(代码片段

使用 json rereiver php mysql 在片段中填充列表视图

关于mysql驱动版本报错解决,Cause: com.mysql.jdbc.exceptions.jdbc4Unknown system variable ‘query_cache_size(代码片段

修改MySQL密码报错“ERROR 1819 (HY000): Your password does not satisfy the current policy requirements“(代码片段

mysql查看版本的四种方法