本文介绍了如何在sql 2005中的列之间添加列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在sql 2005的列之间添加新列

how to add new column in between columns in sql 2005

推荐答案

ALTER TABLE MyTable
ADD MyColumn DATETIME DEFAULT GETDATE() WITH VALUES NOT NULL


参考:
http://msdn.microsoft.com/en-us/library/aa977261 (v = vs.71).aspx [ ^ ]
http://msdn.microsoft.com/en-us/library/ms190273.aspx [ ^ ]


Refer:
http://msdn.microsoft.com/en-us/library/aa977261(v=vs.71).aspx[^]
http://msdn.microsoft.com/en-us/library/ms190273.aspx[^]



--Here RiskLocationID, Code, Description is the columns from your table and 'Test'
--is a new column added dynamicaly.
select RiskLocationID, 1 as 'Test', Code, Description from sdfWarnt




--Amit




--Amit


这篇关于如何在sql 2005中的列之间添加列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-13 21:00