1.group_concat
在我们平常的工作中,使用group by进行分组的场景,是非常多的。
比如想统计出用户表中,名称不同的用户的具体名称有哪些?
具体sql如下:
select name from `user` group by name;
但如果想把name相同的code拼接在一起,放到另外一列中该怎么办呢?
答:…
alias设置的别名命令在终端正常执行在shell脚本中无法直接使用(command not found)?
1 背景👇🏻👇🏻👇🏻: setup_test为在/root/.bashrc中使用alias设置的别名命令。setup_test在命令行正常执行,但是执行sh脚本,报错:setup_test:command not found。 shel…