Answers for "change the column datatype in sql"

SQL
15

sqlserver add column to table

ALTER TABLE dbo.doc_exa 
ADD column_b VARCHAR(20) NULL, 
	column_c INT NULL ;
Posted by: Guest on April-08-2020
-2

modify column name in tsql

sp_rename 'table_name.old_column', 'new_name', 'COLUMN';
Posted by: Guest on May-08-2020

Code answers related to "change the column datatype in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language