网络编程
位置:首页>> 网络编程>> 数据库>> MySQL批量插入数据脚本

MySQL批量插入数据脚本

作者:hebedich  发布时间:2024-01-16 13:31:14 

标签:MySQL,批量插入

MySQL批量插入数据脚本


#!/bin/bash
i=1;
MAX_INSERT_ROW_COUNT=$1;
while [ $i -le $MAX_INSERT_ROW_COUNT ]
do
 mysql -uroot -proot dbname -e "insert into tablename (name,age,createTime) 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

新建表格就可以了


create table afs_test(
name varchar()32,
age int(32),
createTime datetime

插入十万的数据为./jiaoben.sh 100000

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com