In Oracle, you can use the to_char() function to convert dates into strings. The function of this function is to convert numeric or date types into character types; the syntax is "to_char(x[,f]) ", the date type x can be formatted and converted into a string according to format f.
The operating environment of this tutorial: Windows 7 system, Oracle 11g version, Dell G3 computer.
In Oracle, you can use the to_char() function to convert dates into strings.
The function of Oracle to_char function is to convert numeric or date type into character type.
Syntax:
to_char(x[,f])
The date type x can be formatted and converted into a string according to format f.
Template for date/time conversion (possible values of f)
Template | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
HH | The number of hours in a day (01-12) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
HH12 | The number of hours in a day (01-12) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
HH24 | Hours in a day (00-23) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
MI | Minutes (00- 59) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
SS | Seconds (00-59) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
SSSS | Seconds after midnight (0-86399) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
AM or A.M. or PM or P.M. | Noon mark (uppercase) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Noon designation (lowercase) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Year with comma (4 and more digits) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Year (4 and more digits) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Last three digits of year | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
The last two people of the year | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
The last two people of the year | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Year identification (upper case) | ##bc or b.c. or ad or a.d. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
MONTH | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Month | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
month | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
MON | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Mon | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
mon | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
MM | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
DAY | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Day | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
day | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
DY | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Dy | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
dy | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
DDD | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
DD | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
D | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
W | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
##WW | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
CC | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
J | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Q | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
RM | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
rm | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
示例: select to_char(sysdate,'yyyy-mm-dd') from dual; 2018-11-13 Copy after login to_char 例子
推荐教程:《Oracle教程》 The above is the detailed content of How to convert date to string in oracle. For more information, please follow other related articles on the PHP Chinese website!
Related labels:
source:php.cn
Previous article:How to modify fields in oracle database
Next article:How to close an instance in oracle
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Latest Issues
Related Topics
More>
|