Altering column size in SQL Server

Sree picture Sree · Apr 13, 2012 · Viewed 744.8k times · Source

How to change the column size of the salary column in the employee table from numeric(18,0) to numeric(22,5)

Answer

Darren picture Darren · Apr 13, 2012
ALTER TABLE [Employee]
ALTER COLUMN [Salary] NUMERIC(22,5) NOT NULL