使用 to_char 格式化间隔

format interval with to_char(使用 to_char 格式化间隔)
本文介绍了使用 to_char 格式化间隔的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

遵循 SQL 命令

select TO_CHAR(NVL(arg1 - arg2, TO_DSINTERVAL('0 00:00:00'))) from table1

产生以下格式的结果:+000000000 00:03:01.954000.

produces a result of the format: +000000000 00:03:01.954000.

是否可以在to_char函数中输入特殊格式才能得到格式的结果:+00 00:00:00.000?

Is it possible to enter a special format in the to_char function in order to get a result of format: +00 00:00:00.000?

推荐答案

我意识到它根本不聪明,也不是您正在寻找的特殊格式字符串,但是鉴于输出是固定的,这个答案确实有效长度:

I realize it's not clever at all, nor is it the special format string you're looking for, but this answer does work, given that the output is fixed length:

SELECT    SUBSTR(TO_CHAR(NVL(arg1 - arg2, TO_DSINTERVAL('0 00:00:00'))), 1, 1)
       || SUBSTR(TO_CHAR(NVL(arg1 - arg2, TO_DSINTERVAL('0 00:00:00'))), 9, 2)
       || ' '
       || SUBSTR(TO_CHAR(NVL(arg1 - arg2, TO_DSINTERVAL('0 00:00:00'))), 12, 12)
  FROM table1;

它也只是截断了小数秒而不是四舍五入,但我从你的例子中假设它们无论如何都只是零.

It also just truncs the fractional seconds instead of rounding, but I assume from your example they're all just zeros anyway.

这是一个更大的尴尬,但我无法抗拒:

This is an even greater embarrassment, but I couldn't resist:

SELECT SUBSTR(REPLACE(TO_CHAR(NVL(arg1 - arg2, TO_DSINTERVAL('0 00:00:00')))
                     , '0000000', '')
             , 1, 16)
  FROM table1;

这篇关于使用 to_char 格式化间隔的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)