Funkcja "Prawo" jest sposobem na to, użycie podciągu może prowadzić do problemu, który nie jest tak łatwy do zauważenia:
mysql> select right('hello', 6);
+-------------------+
| right('hello', 6) |
+-------------------+
| hello |
+-------------------+
1 row in set (0.00 sec)
mysql> select substring('hello', -6);
+------------------------+
| substring('hello', -6) |
+------------------------+
| |
+------------------------+
1 row in set (0.00 sec)
Ale jeśli nie spróbujesz ominąć początku ciągu, podciąg oczywiście działa dobrze:
mysql> select substring('hello', -5);
+------------------------+
| substring('hello', -5) |
+------------------------+
| hello |
+------------------------+
1 row in set (0.00 sec)