日魂月魄

导航

随笔分类 -  mysql

mysql-5.7.22-macos10.13-x86_64.dmg笔记
摘要:所有包到csdn下载 下面是教程 https://blog.csdn.net/weixin_33862188/article/details/89654971 dmg最后一步有密码必须记住 阅读全文

posted @ 2019-10-28 00:18 L-H 阅读(565) 评论(0) 推荐(0)

删除myql相同数据只留一条
摘要:DELETEFROMpublishSheetWHERE id IN ( SELECT dt.id FROM ( select id from publishSheet group by publishTitle having COUNT(publishTitle)>1 ) dt ) 阅读全文

posted @ 2019-10-23 15:32 L-H 阅读(153) 评论(0) 推荐(0)

Mac os 利用homebrew安装mysql包
摘要:https://blog.csdn.net/cnfaddei/article/details/79823676 https://www.jianshu.com/p/a268d65c7e97 完整卸载 https://www.jianshu.com/p/4cc5640eec4b openssl加载失败 阅读全文

posted @ 2019-07-31 20:05 L-H

centos7下安装mysql会遇到的问题集合
摘要:1.mysqld_safe提示 command not found 解决方法 https://blog.csdn.net/lampqiu/article/details/79138961 2.Mysql启动报错:See "systemctl status mysqld.service" and "j 阅读全文

posted @ 2019-03-29 18:12 L-H 阅读(538) 评论(0) 推荐(0)

CentOS 7.6下解决登录MySQL时,ERROR 1045 (28000): Access denied for user root@localhost (using password: YES
摘要:https://blog.csdn.net/sinat_35406909/article/details/79763782 阅读全文

posted @ 2019-03-29 16:56 L-H 阅读(296) 评论(0) 推荐(0)

使用yum 安装时出现 : Loaded plugins: fastestmirror
摘要:https://blog.csdn.net/weixin_37282478/article/details/82152239 阅读全文

posted @ 2019-03-28 18:14 L-H 阅读(165) 评论(0) 推荐(0)

centos7安装mysql8.0
摘要:https://www.cnblogs.com/xiaopotian/p/8196464.html 阅读全文

posted @ 2019-03-28 18:03 L-H 阅读(379) 评论(0) 推荐(0)

navicat for mysql同一服务器上复制一个数据库中的所有表到另一个数据库
摘要:第一步: 选中数据库-->鼠标右键 >Dump SQL File-->Strueture-Data会导出一个.sql文件 第二步: 创建一个新的数据库,记得Default Character Set选择utf-8,将导出的.sql文件的后缀修改成.txt, 将里面的sql代码复制到新创建的数据库中执 阅读全文

posted @ 2017-07-19 12:00 L-H 阅读(847) 评论(0) 推荐(0)

mysql substring函数截取值后赋给一个declare变量
摘要:今天写的一个mysql存储过程涉及到对一个传入参数的字符串截取,然后需要判断截取字符串进行一系列操作,最开始用select subtring() into 这样的方法将截取值赋于declare变量直接报错。 然后使用sql里面的方法 select @x=subtring() 也行不通,😣。。。然后 阅读全文

posted @ 2016-11-18 15:59 L-H 阅读(995) 评论(0) 推荐(0)

.net下mysql存储过程返回自定义值(原创)
摘要:本人开发的开发者技术变现资源聚集地,大家支持下,下面是网址 https://www.baiydu.com ado.net方法 存储过程 .net调用 阅读全文

posted @ 2015-11-16 15:42 L-H 阅读(620) 评论(0) 推荐(0)