On Apr 29, 4:06 am, happytoday <ehabaziz2...@gmail.com> wrote:
> How to avoid statement ORA-00972: identifier is too long
> with the statement :
> Select mod(30,4) "remainder after dividing m with n" from dual -- 2;

Use this instead:

SQL> Select mod(30,4) "remainder from dividing m by n" from dual -- 2
  2  /

remainder from dividing m by n
------------------------------
                             2

Elapsed: 00:00:00.00
SQL>

Of course this is not a PL/SQL question and could be answered in any
of the other Oracle forums.


David Fitzjarrell

-- 
You received this message because you are subscribed to the Google
Groups "Oracle PL/SQL" group.
To post to this group, send email to Oracle-PLSQL@googlegroups.com
To unsubscribe from this group, send email to
oracle-plsql-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/Oracle-PLSQL?hl=en

Reply via email to