if I have an item select field, can I get the text...
# suiteql
d
if I have an item select field, can I get the text value of that field without joining to the item? Can't find it in the docs, but my intuition would be something like:
Copy code
SELECT
    customrecord_example.id,
    customrecord_example.custrecord_itemfield.text
FROM
    customrecord_example
question answered 1
m
BUILTIN.DF(customrecord_example.custrecord_itemfield)
d
AHA! thanks, I'd seen that around but didn't know what it was for
m