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.
我想在执行 Select 查询时将尾随的“0”附加到数字:
我想要的是选择
344.89 为 344.890 123213.45 为 123213.450 1.2 为 1.200
344.89 为 344.890
123213.45 为 123213.450
1.2 为 1.200
我尝试使用 to_char(col_name,'000000.000')但导致
to_char(col_name,'000000.000')
344.89 => 000344.890 123213.45 => 123213.450 1.2 => 000001.200
344.89 => 000344.890
123213.45 => 123213.450
1.2 => 000001.200
结果附加了不需要的“0”。
你很接近to_char格式。尝试这个:
to_char
to_char(col_name,'999999.000')
s 代表可选的9占位符。s 代表输入0前导零。
9
0