Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to convert full-width numbers to half-width numbers in Oracle

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)05/31 Report--

It is believed that many inexperienced people don't know what to do about how to convert full-width numbers into half-width numbers in Oracle. Therefore, this paper summarizes the causes and solutions of the problem. Through this article, I hope you can solve this problem.

Database table test field id name age

Full-width number: 1234

Half-width number: 1234

The difference between length and lengthb:

Length (1234) 4

Lengthb (1234) 8

Usage of to_single_byte function:

To_single_byte (1234) 1234

Find all full-width numbers:

Select age from test where lengthB (age) > 4

Replacing full-width with half-width:

Update test T1 set t1.age = (select to_single_byte (t2.age) from test T2 where t1.id = t2.id)

After reading the above, have you mastered the method of converting full-width numbers to half-width numbers in Oracle? If you want to learn more skills or want to know more about it, you are welcome to follow the industry information channel, thank you for reading!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report