1
General Board / Re: How to find all hyperlinks to given element
« on: April 14, 2023, 11:46:05 am »
Thank you for the help! I have created this search query and it seems to work perfectly (it searches in Scenarios instead of Notes)
Code: [Select]
SELECT tob.ea_guid AS CLASSGUID, tob.Object_Type AS CLASSTYPE, Name as Element
FROM t_object tob
join t_objectscenarios tsc on tsc.object_id = tob.object_id
WHERE tsc.notes LIKE '%$element://' + (select ea_guid from t_object where name like '%<Search Term>%') + '%'