mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 19:03:01 +02:00
small cleanup
- mostly deleted comments
This commit is contained in:
parent
143f2ac566
commit
fb828db14f
@ -5,19 +5,6 @@ alter table club
|
||||
DISABLE constraint club_manager_fk;
|
||||
alter table club
|
||||
DISABLE constraint club_competition_fk;
|
||||
|
||||
|
||||
|
||||
|
||||
alter table takes_part_in
|
||||
add id number;
|
||||
|
||||
where exists C
|
||||
select * from takes_part_in
|
||||
where club_id = match_id and club_id
|
||||
|
||||
alter table takes_part_in
|
||||
drop column id
|
||||
|
||||
|
||||
|
||||
|
||||
@ -12,22 +12,12 @@ begin
|
||||
declare many_to_many number := 15;
|
||||
begin
|
||||
|
||||
--create table countryTable (Cname varchar(20))
|
||||
--
|
||||
--insert into table countryTable values('Poland')
|
||||
--insert into table countryTable values('England')
|
||||
--insert into table countryTable values('USA')
|
||||
--insert into table countryTable values('Brazil')
|
||||
--insert into table countryTable values('France')
|
||||
|
||||
insert into competition
|
||||
select
|
||||
level +(select nvl(max(id),0) from competition) as id,
|
||||
DBMS_RANDOM.value(0,1000000) as prize,
|
||||
dbms_random.string('A', 6) as country,
|
||||
-- (select Cname from countryTable order by random() limit 1) as country,
|
||||
DBMS_RANDOM.value(1,5) as reputation
|
||||
--into competionTemp
|
||||
from dual
|
||||
connect by level <=loops
|
||||
;
|
||||
@ -45,7 +35,6 @@ connect by level <=loops
|
||||
;
|
||||
|
||||
insert into club
|
||||
--(id, budget, training_ground_quality, reputation, country_of_origin, competition_id, manager_id)
|
||||
select
|
||||
level +(select nvl(max(id),0) from club) as id,
|
||||
DBMS_RANDOM.value(0,1000000) as budget,
|
||||
@ -58,8 +47,6 @@ from dual
|
||||
connect by level <=loops
|
||||
;
|
||||
|
||||
-- attempt at getting random id from competition: (SELECT id FROM competition SAMPLE(1) WHERE rownum = 1)
|
||||
|
||||
insert into stadium
|
||||
select
|
||||
level +(select nvl(max(id),0) from stadium) as id,
|
||||
@ -105,10 +92,7 @@ insert into player
|
||||
from dual
|
||||
connect by level <=loops
|
||||
;
|
||||
|
||||
--insert into takes_part_in
|
||||
-- select club.id, match.id from club, match;--creates a table 1-1 everything into everything
|
||||
|
||||
|
||||
insert into takes_part_in
|
||||
SELECT club_id, match_id
|
||||
FROM (
|
||||
@ -117,17 +101,6 @@ insert into takes_part_in
|
||||
ORDER BY DBMS_RANDOM.RANDOM)
|
||||
WHERE rownum <= many_to_many;
|
||||
|
||||
--insert into takes_part_in
|
||||
-- select
|
||||
-- dbms_random.value(1,loops) as club_id,
|
||||
-- dbms_random.value(1,loops) as match_id
|
||||
-- from dual
|
||||
--connect by level <=loops
|
||||
--;
|
||||
|
||||
--insert into takes_place_in
|
||||
-- select stadium.id, competition.id from stadium, competition ORDER BY DBMS_RANDOM.RANDOM limit 10;
|
||||
|
||||
insert into takes_place_in
|
||||
SELECT stadium_id, competition_id
|
||||
FROM (
|
||||
@ -136,13 +109,5 @@ insert into takes_place_in
|
||||
ORDER BY DBMS_RANDOM.RANDOM)
|
||||
WHERE rownum <= many_to_many;
|
||||
|
||||
--insert into takes_place_in
|
||||
-- select
|
||||
-- dbms_random.value(1,loops) as stadium_id,
|
||||
-- dbms_random.value(1,loops) as competition_id
|
||||
-- from dual
|
||||
--connect by level <=loops
|
||||
--;
|
||||
|
||||
end;
|
||||
end;
|
||||
Loading…
Reference in New Issue
Block a user