This commit is contained in:
dimitrispie 2023-06-07 15:34:01 +03:00
parent ad07fbf053
commit 28272c1b0e
1 changed files with 3 additions and 1 deletions

View File

@ -119,7 +119,7 @@ drop table tmp purge;
ANALYZE TABLE indi_result_org_country_collab COMPUTE STATISTICS;
create TEMPORARY TABLE AS
create TEMPORARY TABLE tmp AS
select o.id organization, o.name, ro.project as project from organization o
join organization_projects ro on o.id=ro.id where o.name is not null;
@ -130,6 +130,8 @@ from tmp as o1
where o1.organization<>o2.organization and o1.name<>o2.name
group by o1.name,o2.name, o1.organization, o2.organization;
drop table tmp purge;
ANALYZE TABLE indi_project_collab_org COMPUTE STATISTICS;
create TEMPORARY TABLE tmp AS