MySql教程

MySQL使用bash脚本造数据

本文主要是介绍MySQL使用bash脚本造数据,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

create database test001;


use test001

CREATE TABLE runoob_tbl(
runoob_id INT NOT NULL AUTO_INCREMENT,
runoob_title VARCHAR(100) NOT NULL,
runoob_author VARCHAR(40) NOT NULL,
submission_date DATE,
PRIMARY KEY (runoob_id)
)ENGINE=InnoDB DEFAULT CHARSET=utf8;

#!/bin/bash

i=1;
MAX_INSERT_ROW_COUNT=$1;
while [ $i -le $MAX_INSERT_ROW_COUNT ]
do
    mysql -uroot -pBccdr@123456 test001 -e "insert into runoob_tbl (runoob_id,runoob_title,runoob_author) values ('HELLO$i',$i % 99,NOW());"
    d=$(date +%M-%d\ %H\:%m\:%S)
    echo "INSERT HELLO $i @@ $d"
    i=$(($i+1))
    sleep 0.05
done

exit 0

sh xx.sh 1000
这篇关于MySQL使用bash脚本造数据的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!