In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)06/01 Report--
Several common data types in oracle:
The length of the char is fixed, with a maximum length of 2K bytes. For example, if you define char (20), even if you insert abc with less than 20 bytes, the database will automatically add 17 spaces after abc to make up 20 bytes.
Chinese accounts for two bytes in char, while English accounts for one, so you can only save 20 letters or 10 Chinese characters in char (20).
Varchar is suitable for non-fixed length, with a maximum length of 4K bytes. For example, if you define varchar (20), when you insert abc, it only occupies 3 bytes in the database.
Long is used to store variable length character data with a maximum length of 2GB
Number, which is used to store integer or floating-point values. Where p is all digits and s is decimal place. The value range of Number (5 quotient 2) is 999.99.
Date is used to store date data
SQL > select to_char (sysdate,'yyyy-mm-dd') from dual
TO_CHAR (SYSDATE,'YYYY-MM-DD')
-
2014-12-24
SQL > select to_char (sysdate,'yyyy-mm-dd hh34:mi:ss') from dual
TO_CHAR (SYSDATE,'YYYY-MM-DDHH24:MI:SS')
2014-12-24 06:36:18
SQL > select to_date (sysdate,'yyyy-mm-dd') from dual
TO_DATE (SYSDATE
-
14-DEC-24
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.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.