• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Multiple rows in database

merkeddd

New Member
Joined
Aug 6, 2008
Messages
9
Reaction score
0
Okay guys, i dont know to much about sql queries, i was wondering if someone could tell me how to add multiple rows using and insert statement like how to add rows 1-3000, with the value number: being 1-3000

for example: INSERT INTO `store`.`value` (`Number:`, `Name:`, `Amount:`) VALUES ('1', '', ''); instead i want something like

INSERT INTO `store`.`value` (`Number:`, `Name:`, `Amount:`) VALUES ('1-3000', '', ''); but ik that isnt right
 
i dont get it do you want to add 3000 rows that starts from 1 and end at 3000?
but to what do you want in name or amount or number?

explain plz
 
Back
Top