how to modified a on table colum in a soql
how to modified a on table colum in a soql
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jignesh TrivediPosted Jul 12, 2012, 7:23 AM
u mean to say Alter Column name Datatype etc.
ALTER TABLE dbo.Table1
ALTER COLUMN Column1 INT NULL
hope this will help you.
Satyapriya NayakPosted Jul 12, 2012, 7:08 AM
Please refer the below link
http://www.w3schools.com/sql/sql_alter.asp
http://www.codeproject.com/Articles/21937/Create-a-Modified-On-Column-in-SQL-Server
http://www.techonthenet.com/sql/tables/alter_table.php/
http://www.1keydata.com/sql/alter-table-modify-column.html
Thanks