Reputation: 9293
create table arts (
`id` int(11) auto_increment,
`pass` int,
`name` varchar(255),
`price` decimal(11,2),
primary key (`id`)
) engine = innodb, charset utf8mb4 collate utf8mb4_croatian_ci;
How can I insert 4000
empty rows inside the above table, using mysql
?
Thanks.
Upvotes: 3
Views: 55