Changes between Version 27 and Version 28 of Ticket #28643
- Timestamp:
- Jan 12, 2018, 5:23:39 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #28643 – Description
v27 v28 32 32 ||||||||||||||= **Text** =|| 33 33 ||**Name**||**Description**||**PostgreSQL**||**Oracle**||**MySQL**||**SQLite**||**PR**|| 34 ||ASCII() ||Returns numeric value of left-most character||X||X||X||as UNICODE()||-||35 ||CHR()||Character with the given code||X||X||as CHAR()||as CHAR()|| -||36 ||LEFT()||Returns the leftmost number of characters as specified||X|| -||X||-||-||34 ||ASCII() (In Python, it is ord())||Returns numeric value of left-most character||X||X||X||as UNICODE()||[https://github.com/django/django/pull/9583 9583]|| 35 ||CHR()||Character with the given code||X||X||as CHAR()||as CHAR()||[https://github.com/django/django/pull/9583 9583]|| 36 ||LEFT()||Returns the leftmost number of characters as specified||X||as SUBSTR()||X||as SUBSTR()||[https://github.com/django/django/pull/9583 9583]|| 37 37 ||LPAD()||Returns the string argument, left-padded with the specified string||X||X||X||-||-|| 38 38 ||LTRIM()||Removes leading spaces||X||X||X||X||[https://github.com/django/django/pull/9220 9220]|| … … 41 41 ||REPLACE()||Replaces occurrences of a specified string||X||X||X||X||[https://github.com/django/django/pull/9539 9539]|| 42 42 ||REVERSE()||Reverse the characters in a string||X||-||X||-||-|| 43 ||RIGHT()||Returns the specified rightmost number of characters||X|| -||X||-||-||43 ||RIGHT()||Returns the specified rightmost number of characters||X||as SUBSTR()||X||as SUBSTR()||[https://github.com/django/django/pull/9583 9583]|| 44 44 ||RPAD()||Appends string the specified number of times||X||X||X||-||-|| 45 45 ||RTRIM()||Removes trailing spaces||X||X||X||X||[https://github.com/django/django/pull/9220 9220]||