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). Syntaxselect oct(n); Example 1select oct(10); Output: Example 2select oct(123); Output:
Next TopicMySQL String
|