Hi, since I'm doing this stuff frequently I've got an example for you. It's done in script but usually I use awk for this, it looks more like a regular programming language.
#!/bin/bash
CNT=0
while [ $CNT -lt 100 ]; do
let CNT=${CNT}+1
INT=$CNT
STRING="${CNT}"
FLOAT=$CNT
printf "insert into table values(%d,\"%s\",%.2f);\n" "${INT}" "${STRING}" "${FLOAT}"
done
Of course the printf can be substituted by `echo`.
Grts.
BTW. I'm not familiar with MySQL but this code is standard SQL, of wich I believe MySQL will accept...