[DiscordArchive] wouldnt the "entry" need to increment so there arent duplicates?
[DiscordArchive] wouldnt the "entry" need to increment so there arent duplicates?
Archived author: dysfunctionator • Posted: 2020-10-02T16:05:52.442000+00:00
Original source
wouldnt the "entry" need to increment so there arent duplicates?
Archived author: MaxtorCoder • Posted: 2020-10-02T16:05:59.912000+00:00
Original source
^
Archived author: dysfunctionator • Posted: 2020-10-02T16:07:07.031000+00:00
Original source
DECLARE e int DEFAULT 100420;
VALUES (100420, 45912, 0.01, 0 , 1, 0, 1 , 1 , null);
Archived author: dysfunctionator • Posted: 2020-10-02T16:07:12.522000+00:00
Original source
shit...
Archived author: dysfunctionator • Posted: 2020-10-02T16:07:52.074000+00:00
Original source
DECLARE e int DEFAULT 100420;
...
VALUES (e, 45912, 0.01, 0 , 1, 0, 1 , 1 , null);
...
SET e = e + 1;
Archived author: dysfunctionator • Posted: 2020-10-02T16:08:14.475000+00:00
Original source
or will SQL take variables like that?
Archived author: FreakyFamous • Posted: 2020-10-02T16:13:27.442000+00:00
Original source
So we set "i"to a default value of 1000000 and want the query to duplicate the rows until "i"=1000150
Archived author: FreakyFamous • Posted: 2020-10-02T16:13:39.484000+00:00
Original source
so it should be "executed" 150 times
Archived author: dysfunctionator • Posted: 2020-10-02T16:15:35.404000+00:00
Original source
VALUES (i, 45912, 0.01, 0 , 1, 0, 1 , 1 , null);
Archived author: FreakyFamous • Posted: 2020-10-02T16:16:03.289000+00:00
Original source
will try that, thanks alot!!