Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 427 Bytes

File metadata and controls

20 lines (14 loc) · 427 Bytes
description
Reverses the order of characters in a string.

REVERSE

Syntax

REVERSE(expression varchar) → varchar

  • expression: The string to reverse.

Examples

{% code title="REVERSE example" %}

SELECT REVERSE('Hello, world!');
-- !dlrow ,olleH

{% endcode %}