C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
| MySQL OCT() FunctionOct(n) is a Sring function of MySQL. This method returns octal value of given number (n). Syntax
 select oct(n); Example 1
 select oct(10); Output:   Example 2
 select oct(123); Output:   
Next TopicMySQL String
 |