• I used below query

    USE dbname;

    GO

    select column1, column2, ISNULL(Column3, ' ') AS 'xxxx'

    FROM Table1;

    GO

    column3 (FK, int, null)