MySQL默认情况下连接端口是3306,可以指定,CentOS本地mysql客户端工具测试mysql -h localhost -uroot -p(locahost指定本地连接IP地址) 还有这种写法也是支持的mysql -hlocalhost -uroot -p
登陆命令
C:\Program Files\MySQL\MySQL Server5.7\bin>mysql.exe -h 120.77.155.115 -P 3316 -u
root–p
查看当前所有的用户
select distinct concat('User:''',user,'''@''',host,''':') as query from mysql.user;
查看用户的权限
select * from mysql.user where user='root'\G
修改配置文件/etc/my.cnf 配慢查询
slow_query_log = 1
slow_query_log_file = /mysql_slow_query.log
命令设置
set global slow_query_log=1;
查看修改状态
show global status like '%slow%';
测试慢查询
SELECT SLEEP(10);
常识
/* .... */ 在大部分语言中都一样是注释。这个之中的语句是不被执行的
MySQL为了兼容之前的版本内容,在/*之后添加惊叹号,表示该语句也会被执行
/*!select * from test*/
/*!50001 select * from test */;
这里的50001表示假如 数据库是5.00.01以上版本,该语句才会被推行
concat关键字拼接字符串
update cs_oth_user_channel set channel_identity = concat(channel_identity, "FACE") where system_id ="1"
在原有的字段内容后面添加channel_identity