How do I add a NULL column when SELECT'ing INTO a new table?

10.3k Views Asked by At

I have a statement like this:

SELECT field1, field2, MyField = NULL
INTO NewTable
FROM OldTable

This does what I want with one exception: the field I created MyField and filled with NULL is an INT type and I'd like it to be a VARCHAR type. I don't know how to modify the same statement to create the new field with the VARCHAR type.

Thanks.

2

There are 2 best solutions below

1
On

Try replacing the null with

CAST(null as VARCHAR)
0
On
SELECT field1, field2, convert(varchar, NULL) as MyField
INTO NewTable
FROM OldTable