Insert  htk(其它字段,create_time) 
Select 其它字段,getdate()
From htk
其它字段指htk表中除create_time之外的其它字段

解决方案 »

  1.   

    补充楼上,添加Where即可为你需要的行
    Insert  htk(其它字段,create_time) 
    Select 其它字段,getdate()
    From htk
    Where ...
      

  2.   

    都要写出来,因为create_time不同
      

  3.   

    只写思路:
    建立临时表,结构与表相同,无主键,另增加一字段NewTime
    将数据连同当前时间复制到临时表中
    删除临时表中Create_Time字段
    然后将临时表中数据复制到表中
    最后删除临时表。语句自己写吧:)