Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将 mm/dd/yyyy 格式插入表中,然后在从表中获取结果以显示时将其与当前日期进行比较。
getdate() 函数返回完整的时间戳,并且无法以我想要的格式提取日期。
您正在寻找此 SQL 来进行转换:
select convert(varchar, date_column, 101) from the_table
在这种情况下,重要的部分是101根据mm/dd/yyyy文档指定格式。如果您有 Sybase ASE 15.7,请使用this,如果您有 SAP ASE 16.0(2014 年发布),请使用this(有更多选项)。
101
mm/dd/yyyy