私はこのクエリを実行しています:
select createdate from OITM_CLONE where ItemCode ='bk1109' and U_SLV ='f'
「2013-05-04 02:28:34.000」のような出力が得られます
しかし、変数で日付を取得したいので、このクエリを使用しています
declare @da as varchar (20)
declare @d as varchar(max)
set @d=(select createdate from OITM_CLONE where ItemCode ='bk1109' and U_SLV ='f')
select @d
しかし、「May 4 2013 2:28AM」のような出力が得られます
この出力フォーマット「2013-05-04 02:28:34.000」が必要です