Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

LEFT function in Oracle

Tags:

sql

oracle

I am looking in an Oracle (10g) stored procedure and come across the following LEFT/RIGHTfunction.

TO_DATE(LEFT('01-Jun-1201',9))

In the Toad editor, I am not able to run this function and have to change it to LPAD

TO_DATE(LPAD('01-Jun-1201',9))

The stored procedure is running fine with LEFT/RIGHT function but it runs faster if I use LPAD/RPAD.

Is there any LEFT Function in Oracle and if not then why is the stored procedure running fine?

SELECT
    SUM(DECODE(SIGN(TO_DATE(LEFT('01-Jun-12', 9)) - TO_DATE(logdate)),
               -1, totaltime, 0, totaltime, 0)) AS totaltime
  FROM AREA2.v_area
  WHERE logdate >= TO_DATE(RIGHT('01-Jun-12', 9))
    AND logdate <= TO_DATE('30-Jun-12')
like image 480
user1263981 Avatar asked Jul 03 '12 10:07

user1263981


People also ask

What is left join in Oracle?

The LEFT JOIN keyword returns all records from the left table (table1), and the matching records from the right table (table2). The result is 0 records from the right side, if there is no match.

Is there a left function in Oracle?

LEFT is not a function in Oracle. This probably came from someone familiar with SQL Server: Returns the left part of a character string with the specified number of characters.

What is Oracle right function?

The RIGHT() function extracts a number of characters from a string (starting from right).

What is left () in SQL?

The LEFT() function extracts a number of characters from a string (starting from left).


2 Answers

I've discovered that LEFT and RIGHT are not supported functions in Oracle. They are used in SQL Server, MySQL, and some other versions of SQL. In Oracle, you need to use the SUBSTR function. Here are simple examples:

LEFT ('Data', 2) = 'Da'

->   SUBSTR('Data',1,2) = 'Da'

RIGHT ('Data', 2) = 'ta'

->   SUBSTR('Data',-2,2) = 'ta'

Notice that a negative number counts back from the end.

like image 122
MarvinM Avatar answered Nov 09 '22 21:11

MarvinM


There is no documented LEFT() function in Oracle. Find the full set here.

Probably what you have is a user-defined function. You can check that easily enough by querying the data dictionary:

select * from all_objects
where object_name = 'LEFT'

But there is the question of why the stored procedure works and the query doesn't. One possible solution is that the stored procedure is owned by another schema, which also owns the LEFT() function. They have granted rights on the procedure but not its dependencies. This works because stored procedures run with DEFINER privileges by default, so you run the stored procedure as if you were its owner.

If this is so then the data dictionary query I listed above won't help you: it will only return rows for objects you have rights on. In which case you will need to run the query as the stored procedure's owner or connect as a user with the rights to query DBA_OBJECTS instead.

like image 42
APC Avatar answered Nov 09 '22 20:11

APC