hello i am new to oracle db , how can i simply ask for the max date?

FUNCTION get_max_date_rec(
  i_value_date                  IN  vat.value_date%TYPE := app_utilities_q.server_sys_date )
RETURN vat.rec_id%TYPE
IS 
 v_date vat.value_date%TYPE; 
BEGIN

  SELECT  MAX(v.value_date)--compiler err
  INTO    v_date
  FROM    vat v 
  WHERE v.value_date < i_value_date 

  RETURN get_rec_by_date(v_date).rec_id;--compiler err

 END get_max_date_rec;

EDIT this is the err created by the compiler Error(76,7): PL/SQL: SQL Statement ignored Error(81,7): PL/SQL: ORA-00933: SQL command not properly ended

I want to return rec_id as writen above...

link|improve this question

74% accept rate
1  
What is the compiler error? – Tony Andrews May 4 '11 at 13:56
What do you want to return: the REC_ID value or the whole record? – Tony Andrews May 4 '11 at 14:03
chances are if you are creating a separate function to simply get a max value, you are making things too difficult. Good chance this logic can/should be part of a greater SQL statement (select..group by) – tbone May 5 '11 at 12:30
feedback

2 Answers

FUNCTION get_max_date_rec(
  i_value_date  IN  vat.value_date%TYPE 
    default app_utilities_q.server_sys_date  -- assuming this is a default
  )
RETURN vat.rec_id%TYPE
IS 
 v_date vat.value_date%TYPE; 
BEGIN

  SELECT  MAX(v.value_date)--compiler err
  INTO    v_date
  FROM    vat v 
  WHERE v.value_date < i_value_date 

  RETURN v_date;

 END get_max_date_rec;

One risk is that if no records in vat exist for a date greater than i_value_date, the code will fail, throwing the NO_DATA_FOUND exception. You should consider how you might wish to handle that condition - or not handle it, if that's the correct thing to do.

link|improve this answer
3  
The original poster is missing a semicolon after i_value_date in the line WHERE v.value_date < i_value_date. Without the full compiler error, I'm only guessing, but I suspect that is causing the compilation errors that are being reported. – Justin Cave May 4 '11 at 17:17
1  
You'll never get NO_DATA_FOUND if the query is getting an aggregate. – Jeffrey Kemp May 5 '11 at 1:36
feedback
up vote 1 down vote accepted

the problem was not adding

;

in the end of select

  SELECT  MAX(v.value_date)--compiler err
  INTO    v_date
  FROM    vat v 
  WHERE v.value_date < i_value_date ;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.