CDF not used

From IMSMA Wiki
Revision as of 16:54, 10 February 2014 by Alnaucler (talk | contribs) (Created page with "<pre>SELECT customdefinedfield.name, customdefinedfield.cdf_datatype, customdefinedfield.entitytype, customdefinedfield.label FROM customdefinedfield Left Join cdfvalue ON cus...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
SELECT
customdefinedfield.name,
customdefinedfield.cdf_datatype,
customdefinedfield.entitytype,
customdefinedfield.label
FROM
customdefinedfield
Left Join cdfvalue ON customdefinedfield.cdf_id = cdfvalue.cdf_id
WHERE
cdfvalue.cdf_id IS NULL 
ORDER BY
customdefinedfield.entitytype ASC,
customdefinedfield.name ASC