摘要:
概述 做项目中,碰到了个难题:想要根据年份和第几周获取该周的周一和周日的时间。找了下MySQL中的日期函数,发现没有。既然没有轮子用,那我们自己造个轮子。 根据年份和周数获取该周第一天的日期 -- 自定义函数 delimiter // drop function if exists FUN_GET_ 阅读全文
摘要:
-- 格式化金额,0.00 直接返回0 drop function FGAMT; CREATE FUNCTION FGAMT ( amt decimal(18,2) ,jingdu int(9) )RETURNS varchar(255) begin declare result varchar(2 阅读全文
摘要:
[root@localhost ~]# cd msmtp-1.4.20[root@localhost msmtp-1.4.20]# ./configurechecking build system type... i686-pc-linux-gnuchecking host system type. 阅读全文
摘要:
1. Got starting container process caused "process_linux.go:301: running exec setns process for init caused \"exit status 40\"": unknown. from time to 阅读全文
摘要:
镜像启动时,自动执行的是~/.bashrc文件,所以,环境变量需要配置在该文件内,这样镜像启动时,可自动执行该文件,使环境变量生效。 vi ~/.bashrc # .bashrc # User specific aliases and functions alias rm='rm -i'alias 阅读全文