使用shell脚本来给mysql加索引的方法
程序员文章站
2022-06-08 22:21:10
用shell脚本来给mysql加索引
刚好用到, mark一下:
#! /bin/bash
tb_base=tb_student_
arr=("0" "1"...
用shell脚本来给mysql加索引
刚好用到, mark一下:
#! /bin/bash tb_base=tb_student_ arr=("0" "1" "2" "3" "4" "5" "6" "7" "8" "9" "a" "b" "c" "d" "e" "f") getcmd() { for value in ${arr[@]} do for value2 in ${arr[@]} do tb_name=$tb_base$value$value2 cmd="alter table ${tb_name} add index seed (uid, name); " echo $cmd done done } getcmd $1
上面的结果就是要执行的语句,done.
嗯, tb_student_
和"tb_student_"
都可以
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接
下一篇: 浅谈Vue初学之props的驼峰命名