Hi.
I have an integer field, which I set as select. I put in the following which works fine:
SELECT ID, Label
FROM sccms_core_pages
ORDER BY Label
This gives the user a selection of:
dog
cat
bird
However, I don’t always want to actually pick what is given - sometimes I want to just pick NULL. I am not sure if there is a SELECT that would add NULL as an option, so the user would see:
dog
cat
bird
The first line in the select being a blank line - causing a NULL value to be put into the field. The field allows NULLS in the DB.
This has to be a dynamically generated select, not manual.
Thanks for any suggestions.
Jamie