About 61,500 results
Open links in new tab
  1. TO_CHAR (datetime) - Oracle Help Center

    You can use this function in conjunction with any of the XML functions to generate a date in the database format rather than the XML Schema standard format.

  2. Oracle TO_DATE Function

    May 5, 2025 · This tutorial shows you how to use the Oracle TO_DATE () function to convert a date string to a DATE value using a specific format.

  3. Oracle TO_DATE | Convert Datetime to Date - IT Tutorial

    Jun 8, 2021 · Some of the datetime functions were designed for the Oracle DATE datatype (ADD_MONTHS, CURRENT_DATE, LAST_DAY, NEW_TIME, and NEXT_DAY). If you …

  4. Convert datetime field to just a date field in SQL (Oracle)

    Jul 1, 2014 · TRUNC will truncate the time to midnight, which you will need to do if you want to match the date parts of two datetimes. The time may still display, depending on how your …

  5. Oracle SQL Tutorial: TO_DATE () function explained with examples

    How to convert Dates in Oracle using TO_DATE, TO_CHAR functions with examples. Date formats available in Oracle.

  6. Oracle / PLSQL: TO_DATE Function - TechOnTheNet

    This Oracle tutorial explains how to use the Oracle / PLSQL TO_DATE function with syntax and examples. The Oracle / PLSQL TO_DATE function converts a string to a date.

  7. Oracle Oracle Sql Timestamp To Date Conversion - sqlpey

    Nov 22, 2024 · If you have a timestamp value stored in the database and need to convert it into a date format, this blog post will guide you through the process using various functions in Oracle …

  8. Converting date format in Oracle sql - Stack Overflow

    Oct 31, 2020 · If you mean that you have a CHAR or VARCHAR2 data type storing date values in the format dd.mm.yyyy then use TO_DATE to convert it to a DATE data type and then …

  9. How can I convert a datetime to a date in Oracle using the …

    In summary, you can convert a datetime to a date string in mm/dd/yyyy format in Oracle by using the TO_CHAR function with the format mask 'mm/dd/yyyy'. This provides a straightforward …

  10. TO_DATE () Function in Oracle - Database.Guide

    Sep 8, 2021 · In other words, it’s good practice to always provide a format model when using this function. Here’s a full list of datetime format elements that can be used when constructing a …