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
left outer join (select collection_object_id,string_agg(attribute_value,'; ') as vacls from attributes
where attribute_type ='verbatim agent' and attribute_remark= 'collector'
group by collection_object_id) vac
on coll_object.collection_object_id=vac.collection_object_id
That particular iteration works only if the documentation hasn't been followed, and joins to a bit of a weird table that most probably won't include.
left outer join (
select
collection_object_id,
string_agg(attribute_value,'; ') as vacls
from
attributes
where
attribute_type ='verbatim agent' and
determination_method= 'collector'
group by
collection_object_id
) vac on flat.collection_object_id=vac.collection_object_id
That particular iteration works only if the documentation hasn't been followed, and joins to a bit of a weird table that most probably won't include.
ArctosDB/arctos#5449 (comment) is more portable
Originally posted by @Jegelewicz in ArctosDB/arctos#5449 (comment)
The text was updated successfully, but these errors were encountered: