So i have a quite strange need. I have to add none existing record to outcome of select query. Why? Query is a source of dropdown options in my Access application and i want to add one other option that is not in any table (as a form of default).
So now i have simple:
SELECT rowName FROM verySpecialTable
and i want to have
(SELECT rowName FROM verySpecialTable) + "default"
Can i do it by SQL? or do i have to add dummy record to verySpecialTable