我为一张表创建更新查询。我需要从旧数据库创建日期。但我不知道该怎么做?
我的疑问是,
select 'update organizations set createddate='+CAST(RegisteredDate as varchar(50))+'''where Id='+cast(organizationid as varchar(50))+'' from OrganizationRegisteredDetails
当我使用此查询时,我的结果是,
update organizations set createddate=Aug 19 2009 10:20AM'where Id=1
但我想要结果,
createddate = 8/19/2009
只要。我不要时间。
那么如何做到这一点呢?
这可能吗?