Mysql常用sql语句汇总
1、mysql导出文件:
SELECT`pe2e_user_to_company`.company_name,`pe2e_user_to_company`.company_code,`users`.name,`users`.uid,`users`.mail,`pe2e_email_notification_email`.`email_cc`FROM`users`,`pe2e_user_to_company`LEFTJOIN`pe2e_email_notification_email`ON`pe2e_user_to_company`.`uid`=`pe2e_email_notification_email`.`uid`WHERE`users`.`uid`=`pe2e_user_to_company`.`uid`intooutfile'/tmp/users.csv'fieldsterminatedby','enclosedby'"'linesterminatedby'\r\n';
2、关联查询
sql中多个leftjoin,为了保证返回数量和主表一样,要加个groupby主表id
3、if,ifnull,concat_ws等常见方法
1)concat_ws('',country,province,city)region 三字段按照''之间的内容合拼;
concat_ws('',CASEp.gameType1WHEN1THEN'朗诵讲故事'WHEN2THEN'朗诵情景演讲'END,CASEp.gameType2WHEN3THEN'主题写作'END)asgameType;
2)if(gender=1,'男','女')asgender;
3)ifnull(age,0)asage;
4)(CASEageGroupWHEN1THEN'儿童A组'WHEN2THEN'儿童B组'WHEN3THEN'少年A组'WHEN4THEN'少年B组'END)asageGroup;
4、mysql5.7找回root密码
[root@166087mysql]#/usr/local/mysql/bin/mysqld_safe--defaults-file=/etc/my.cnf--datadir=/data/mysql--skip-grant-tables mysql>updateusersetauthentication_string=password('123456')whereuser='root';
5、阿里云使用笔记-MySQL远程连接-centos7
首先登录:
mysql-uroot-hlocalhost-p
usemysql #打开mysql数据库
2)将host设置为%表示任何ip都能连接mysql,当然您也可以将host指定为某个ip
updateusersethost='%'whereuser='root'andhost='localhost'; flushprivileges;#刷新权限表,使配置生效
然后我们就能远程连接我们的mysql了。
3)如果您想关闭远程连接,恢复mysql的默认设置(只能本地连接),您可以通过以下步骤操作:
usemysql#打开mysql数据库 updateusersethost='localhost'whereuser='root';#将host设置为localhost表示只能本地连接mysql flushprivileges;#刷新权限表,使配置生效 updateusersetpassword=password('123456')whereUser='root';#修改密码 flushprivileges;#刷新权限表,使配置生效
备注:您也可以添加一个用户名为yuancheng,密码为123456,权限为%(表示任意ip都能连接)的远程连接用户。命令参考如下:
grantallon*.*to'yuancheng'@'%'identifiedby'123456'; flushprivileges;
4)mysql排序时如果该字段是varchar怎么办?
2种办法:
1.orderby字段+0
2.orderbycast(字段asint)
6、批量修改字段数据
updatet_commentSETavatar=replace(avatar,'http','https');//替换 updatet_logsetmessage=concat("https",message);//前面追加