I am trying to change a column from a varchar(50) to a nvarchar(200). What is the SQL command to alter this table?
varchar(50)
nvarchar(200)
Try this:
ALTER TABLE "table_name" MODIFY "column_name" "New Data Type";