摘要:
参考:https://www.cnblogs.com/codecat/p/10833523.html select uuid() as uuid; 默认生成的uuid含有'-',可以使用replace函数替换掉'-',SQL如下: select replace(uuid(),"-","") as u 阅读全文
摘要:
方法1:jd-gui软件 该软件免安装,双击exe文件打开,Open File,选择jar包,打开即可。如果想保存源代码,点击File Save All Sources 方法2:Luyten软件 下载地址:https://github.com/deathmarine/Luyten/releases 阅读全文
摘要:
在linux服务器执行mysql或者mysqldump指令时报如下错误 -bash: mysql: command not found -bash: mysqldump: command not found 原因: 这是由于系统默认会查找/usr/bin下的命令。 如果这个命令不在这个目录下,当然会 阅读全文