Sql Server string to date conversion

后端 未结 14 707
执笔经年
执笔经年 2020-11-22 09:18

I want to convert a string like this:

\'10/15/2008 10:06:32 PM\'

into the equivalent DATETIME value in Sql Server.

In Oracle, I wou

14条回答
  •  北海茫月
    2020-11-22 09:43

    Try this

    Cast('7/7/2011' as datetime)
    

    and

    Convert(varchar(30),'7/7/2011',102)
    

    See CAST and CONVERT (Transact-SQL) for more details.

提交回复
热议问题