-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsequences
More file actions
52 lines (36 loc) · 1.16 KB
/
sequences
File metadata and controls
52 lines (36 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
create SEQUENCE sRequest_ID
increment by 1
maxvalue 999999;
insert into ACCOUNT_RECOVER (Request_ID) values (sRequest_ID.NEXTVAL);
create SEQUENCE sPlayer_id
increment by 1
maxvalue 999999;
insert into PLAYER_GameInfo (Player_id) values (sPlayer_id.NEXTVAL);
create SEQUENCE sTeam_id
increment by 1
maxvalue 999999;
insert into TEAMS(Team_id) values (sTeam_id.NEXTVAL);
create SEQUENCE sTrade_id
increment by 1
maxvalue 999999;
insert into TRADE(Trade_id) values (sTrade_id.NEXTVAL);
create SEQUENCE sEvent_id
increment by 1
maxvalue 999999;
insert into GameRULES(Event_id) values (sEvent_id.NEXTVAL);
create SEQUENCE sLeague_id
increment by 1
maxvalue 999999;
insert into LEAGUES(League_id) values (sLeague_id.NEXTVAL);
create SEQUENCE sSeason_id
increment by 1
maxvalue 999999;
insert into SEASONS(Season_id) values (sSeason_id.NEXTVAL);
create SEQUENCE sRound_id
increment by 1
maxvalue 999999;
insert into ROUNDS(Round_id) values (sRound_id.NEXTVAL);
create SEQUENCE sTransaction_id
increment by 1
maxvalue 999999;
insert into POINT_SYSTEM(Transaction_id) values (sTransaction_id.NEXTVAL);