Changes between Version 27 and Version 28 of Ticket #28643


Ignore:
Timestamp:
Jan 12, 2018, 5:23:39 PM (6 years ago)
Author:
Matthew Pava
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #28643 – Description

    v27 v28  
    3232||||||||||||||= **Text** =||
    3333||**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]||
    3737||LPAD()||Returns the string argument, left-padded with the specified string||X||X||X||-||-||
    3838||LTRIM()||Removes leading spaces||X||X||X||X||[https://github.com/django/django/pull/9220 9220]||
     
    4141||REPLACE()||Replaces occurrences of a specified string||X||X||X||X||[https://github.com/django/django/pull/9539 9539]||
    4242||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]||
    4444||RPAD()||Appends string the specified number of times||X||X||X||-||-||
    4545||RTRIM()||Removes trailing spaces||X||X||X||X||[https://github.com/django/django/pull/9220 9220]||
Back to Top