How to insert 100000+ records in a table in mySQL database.
What I think like :
BEGIN declare i=0,n=100000; while (i<n) DO i++; insert into tableName values (1,2,3); END while; END Why I need : To test load on server if this much records are in database.
Is there any simple one line query which can work this?
;-)