You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
create table opentrials as select id,acronym from (select id,publisher,case when alternateidentifiers is null then "" else jsonpath(alternateidentifiers,publisher) end as acronym from (setschema 'id,publisher,alternateIdentifiers'select jdictsplit(c1,"id","publisher","alternateIdentifiers") from stdinput())) ;
create index opentrialsindex on opentrials(acronym,id);