我正在使用SQL Server 2008.我想在报告中显示9月的正确缩写 9月而不是 9月。
这是我的代码:
Sep 5, 2016
结果是:Sept 5, 2016
但结果应为:$(document).ready(function() {
$("#ewd-feup-register-8").hide();
$("#ewd-feup-register-input-8").hide();
});
我如何更正格式?
答案 0 :(得分:0)
This should probably do the trick for you:
SELECT REPLACE(CONVERT(VARCHAR(12),SO.CREATED,107),'Sep','Sept') AS CREATED;
答案 1 :(得分:0)
尝试 REPLACE 命令,因为您只需要 9月(根据我对该问题的理解)!
SELECT (REPLACE (CONVERT(VARCHAR(12), SO.CREATED, 107) ), 'Sep', 'Sept') AS CREATED
希望这有效!