Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
kb:archi [2024/05/02 19:57] – created yehuda | kb:archi [2024/05/26 08:26] (current) – yehuda | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Archi ====== | ====== Archi ====== | ||
+ | |||
+ | [[https:// | ||
<code sql> | <code sql> | ||
- | select name from Elements e INNER JOIN Properties p ON e.id = p.conceptid WHERE e.type = ' | + | select name from Elements e |
+ | INNER JOIN Properties p ON e.id = p.conceptid | ||
+ | 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 = ' | ||
</ | </ |