TSQL: datetime from character string error

前端 未结 3 1361
北恋
北恋 2021-01-28 06:20

There are some posts related to this but I\'m so new to TSQL that I cannot make sense of them so please excuse me.

My procedure has:

    BEGIN TRY

              


        
3条回答
  •  时光说笑
    2021-01-28 07:13

    Maybe something like this:

    EXEC mydbo.dbo.myprocedure @mydate = '2012/05/08 09:21:00'  
    

提交回复
热议问题