Created
October 19, 2015 15:09
-
-
Save bastianh/e74ba67879abcbcf61b0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# slots | |
SELECT | |
"attributeName" AS name, | |
coalesce(attrib."valueFloat", attrib."valueInt") AS value | |
FROM evesde."dgmTypeAttributes" AS attrib | |
INNER JOIN evesde."invTypes" AS type | |
ON attrib."typeID" = type."typeID" | |
INNER JOIN evesde."dgmAttributeTypes" AS attribtypes | |
ON attrib."attributeID" = attribtypes."attributeID" | |
WHERE "attributeName" IN ('lowSlots','medSlots','hiSlots','rigSlots','maxSubSystems','lowSlotModifier','medSlotModifier','hiSlotModifier') | |
AND type."typeID" = 582 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment