Mysql
Posted yanghanwen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mysql相关的知识,希望对你有一定的参考价值。
1、查询当前事物隔离级别:SELECT @@tx_isolation;
2、命令行登录mysql,
先配置环境变量,path:C:Program FilesMySQLMySQL Server 5.7in
登录(如果无法登录,就%ProgramData%进入mysql,找到my.ini,最后一行添加skip-grant-tables,重启服务,不输入密码,直接登录)
use mysql;
修改密码:5.7之前:update user set password=PASSWORD("123456") where user=‘root‘;
5.7之后:update mysql.user set authentication_string=password(‘root‘) where user=‘root‘;
删除最后一行的“skip-grant-tables”,保存并关闭文件,可用密码登录数据库
use mysql;
所有ip都可以远程访问:update user set host = ‘%‘ where user = ‘root‘;
关闭事物自动提交:
当前实例数据库:SET autocommit=0
重启也生效:找到my.ini,[mysqld]下面添加autocommit=0
以上是关于Mysql的主要内容,如果未能解决你的问题,请参考以下文章