I want to be able to check if we have a column and if not, then we just want to add an empty column,
    IF Users.[parties] = '' OR NULL
        BEGIN
            SELECT [parties] 
            FROM Users 
            UNION 
            SELECT 'Empty'
        END
The Users.[parties], we check to see if we have a column but if we don't, it will result in a crash, in the case for this event I thought it would be best just to add an empty column with the name of Empty but I can't get the code to work above.
If we do have columns, the results will be something like...
ColumnsName    ColumnAge
data             33
data             22
But when there isn't a column, it crashes and ideally I would like it to just have an empty column like this,
EmptyColumn
 
     
     
     
    