You cant represent database null value in xml. Since it is database null, xml will not create node for that value. If you want to create a xml node for this blank value, you can use of database
ISNULL() function in your sql query and replace the null value with blank string('').
columnValue = ISNULL(column, '')
Thanks