ol
I am running the following query to get back groups and skills:
SELECT
t."typeID",
t."typeName",
g."groupID",
g."groupName"
FROM "invTypes" t
JOIN "invGroups" g ON g."groupID" = t."groupID"
JOIN "invCategories" c on c."categoryID" = g."categoryID"
WHERE g."categoryID" = 16 -- The “Skill” category
AND t."published" = true -- Optional: only published skills
ORDER BY g."groupName" asc;
I cannot find the Advanced Armor Layering in the results. Where is that skill ? I might be missing something…
Thanks