You defined the column as nullable and when you don't insert data for the column then query returns NULL as value; that's how nullable columns work.
If you want NULL as blank in a query, then you can use the ISNULL function to retunr blank instead, like
SELECT ISNULL(Previous_RM_ID, '') AS Previous_RM_ID, ...
or you define the column as not-nullable with blank as default value, like
...,Previous_RM_ID nvarchar(255) NOT NULL DEFAULT(''), ...