我试图在H2数据库中以24小时格式获取当前时间,但它似乎无法正常工作我尝试<header>
<a href="index.html"><img src="https://lorempixel.com/200/200/" width="102" height="102" alt="Godfather Logo" title="Godfather Small Logo" /></a>
<h1> loyal capos to the don </h1>
</header>
并选择select parsedatetime (current_time,'hh24:mm')
和其他人...但似乎没有工作
我尝试更改Windows时间的格式,但它也没有用,我想这是一个Windows问题,我发布了一个问题windows not converting to 24 hour format
答案 0 :(得分:1)
parsedatetime
将字符串解析为日期时间。您应该使用formatdatetime
:
SELECT FORMATDATETIME(current_time, 'HH:mm')
答案 1 :(得分:-1)
要解决此问题,Sql应具有
SELECT TO_CHAR(now(), 'HH24:MI:SS')