Initialize value with date functions : Date « Data Type « Oracle PL / SQL






Initialize value with date functions

     

SQL>
SQL> DECLARE
  2     lv_three_month_forecast_date DATE         := ADD_MONTHS(SYSDATE,3);
  3     lv_current_user_txt          VARCHAR2(40) := TO_CHAR(UID) ||
  4                                                  ': ' || USER;
  5     lv_date_as_number_num        PLS_INTEGER  := TO_NUMBER(TO_CHAR(
  6                                                  SYSDATE, 'YYYYMMDD'));
  7  BEGIN
  8     DBMS_OUTPUT.PUT_LINE(lv_three_month_forecast_date);
  9     DBMS_OUTPUT.PUT_LINE(lv_current_user_txt);
 10     DBMS_OUTPUT.PUT_LINE(lv_date_as_number_num);
 11  END;
 12  /
19-SEP-08
36: JAVA2S
20080619

PL/SQL procedure successfully completed.

SQL>

   
    
    
    
  








Related examples in the same category

1.Define and use Date data type
2.Date data types
3.Use DATE type column
4.Use DATE to mark a string as date value
5.Use SYSDATE in insert statement
6.Set date value to SYSDATE
7.check date value range
8.Insert statement converts text value to date type value
9.Are two dates equal
10.Use comparison operator with date type value
11.Compare date value after to_char() and trim()
12.Compare date value with sysdate or null value
13.Use to_char to format date
14.use to_char more than once to create long date format
15.Declare date type variable and set the value at the same time
16.Differences Between Dates
17.Extract year, month, day from a date
18.Insert sysdate value to date type column
19.Use if statement to compare two date type variable
20.Assign system date to date type variable
21.Date math
22.Date type column
23.Date value calculation in to_char function
24.Date variable
25.Date/Time literals
26.New ANSI DATE literal.
27.Store hour:minute information to date type variable
28.Assign date value as string to date type variable
29.Convert the character string back to date format