/ Published in: SQL
                    
                                        
A few examples of the REMAINDER function in Oracle.
                
                            
                                Expand |
                                Embed | Plain Text
                            
                        
                        Copy this code and paste it in your HTML
/*REMAINDER*/
SELECT REMAINDER(24, 7) FROM dual;
SELECT REMAINDER(24, 6) FROM dual;
SELECT REMAINDER(24, 5) FROM dual;
SELECT REMAINDER(627, 101) FROM dual;
SELECT REMAINDER(-58, -10) FROM dual;
URL: http://www.databasestar.com/oracle-remainder/
Comments
 Subscribe to comments
                    Subscribe to comments
                
                