自己慢慢积累。
发布时间:2014-05-07 10:59:38
Shell if语句用法小结[日期:2012-02-15]来源:Linux社区 作者:love__coder[字体:大 中 小]在shell编程中,常常会用if来判断条件,从而控制程序的流程分支。if语句是非常简单,跟其他语言差不多,不过,在shell中,要注.........【阅读全文】
发布时间:2014-04-17 11:09:49
mysqlslap工具mysqlslap -h 192.168.60.150 -P 3308 --create-schema=opaq --concurrency=1 --iterations=1--query=select count(*) from vehicle_partition; --csv=./result_7-5.txtmysql参数首先看看“-e, --execute=name”参数,这个参数是告诉mysql,我只要执行“-e”后面的某个命令,而不是要通过mysql 连接登.........【阅读全文】
发布时间:2014-04-16 11:07:10
select * from vehicle_new a, (select PlateColor_ from vehicle_new where ID_=600004024 or ID_=600003898)t where instr(a.PlateColor_,t.PlateColor_)>0;......【阅读全文】