徐小玉的博客。
发布时间:2020-03-29 11:26:04
答: ———---------- Argument is often used in the sense of actual argument vs. formal parameter. The formal parameter is what is given in the function declaration/definition/prototype, while the actual argument is what is passed when calling the function — an instance of a form.........【阅读全文】
发布时间:2016-12-05 18:12:50
1.常用命令举例 a.创建文件夹: md D:\mybat //将在D盘下创建一个名为 mybat的文件夹 b.删除文件夹: .........【阅读全文】
发布时间:2016-11-30 13:59:08
如果我们需要将两个select语句的结果作为一个整体显示出来,我们就需要用到union或者union all关键字。union(或称为联合)的作用是将多个结果合并在一起显示出来。union和union all的区别是,union会自动压缩多个结果集合中的重复结果,而union all则将所有的结果全部显示出来,不管是不是重复。Union:对两个.........【阅读全文】
发布时间:2016-11-12 09:39:35
ftp如何不要提示用mget自动连续get多个文件?#bin#prompt#mget XXXXXXXX------------------------------- zip -q -r test3 ttt ( zip [参数] 目标名,压缩的目录路径)unzip -v 只看,不解压。====================for i in $(ls *.pl) ;do echo "Curent is $i" ;done =.........【阅读全文】