从值获取月份名称

时间:2016-04-06 17:51:01

标签: sql-server tsql

如何从以下值获取月份名称" 2016-04-01 15:16:00.000"

我使用了以下SQL:

  • 月份编号是正确的
  • 月份名称不正确

enter image description here

def destroy
    @cliq = Cliq.find_by(params[:cliq_id])
    @cliq_membership = CliqMembership.find(params[:id])

    @cliq_membership.destroy
       flash[:notice] = "You left the Cliq."
    redirect_to cliqs_path
end

1 个答案:

答案 0 :(得分:2)

将日期传递给datename,而不是月份编号......

DATENAME(mm, [MyDate])