Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
kb:archi [2024/05/02 19:58] – yehuda | kb:archi [2024/05/26 08:26] (current) – yehuda | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Archi ====== | ====== Archi ====== | ||
+ | |||
+ | [[https:// | ||
<code sql> | <code sql> | ||
Line 5: | Line 7: | ||
INNER JOIN Properties p ON e.id = p.conceptid | INNER JOIN Properties p ON e.id = p.conceptid | ||
WHERE e.type = ' | WHERE e.type = ' | ||
+ | </ | ||
+ | |||
+ | |||
+ | <code sql> | ||
+ | select name from Elements e | ||
+ | INNER JOIN Properties p ON e.id = p.conceptid | ||
+ | WHERE e.type = ' | ||
+ | </ | ||
+ | |||
+ | |||
+ | <code sql> | ||
+ | select Elements.name, | ||
+ | inner join Properties | ||
+ | on Elements.id=Properties.conceptid | ||
+ | where Elements.type=' | ||
+ | and Properties.propkey = ' | ||
</ | </ |