Changes between Version 23 and Version 24 of Ticket #28643


Ignore:
Timestamp:
Dec 21, 2017, 3:31:40 AM (7 years ago)
Author:
Nick Pope
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #28643 – Description

    v23 v24  
    66
    77||||||||||||||= **Comparison** =||
    8 ||Name||Description||PostgreSQL||Oracle||MySQL||SQLite||PR||
     8||**Name**||**Description**||**PostgreSQL**||**Oracle**||**MySQL**||**SQLite**||**PR**||
    99||NULLIF()||Returns NULL if the first argument equals the second.||X||X||X||X||-||
    10 \\
    11 ||||||||||||||= **Text** =||
    12 ||Name||Description||PostgreSQL||Oracle||MySQL||SQLite||PR||
    13 ||ASCII()||Returns numeric value of left-most character||X||X||X||as UNICODE()||-||
    14 ||CHR()||Character with the given code||X||X||as CHAR()||as CHAR()||-||
    15 ||LEFT()||Returns the leftmost number of characters as specified||X||-||X||-||-||
    16 ||LPAD()||Returns the string argument, left-padded with the specified string||X||X||X||-||-||
    17 ||MD5()||Calculates the MD5 hash of string, returning the result in hexadecimal||X||-||-||-||-||
    18 ||REPEAT()||Repeats a string the specified number of times||X||-||X||-||-||
    19 ||REPLACE()||Replaces occurrences of a specified string||X||X||X||X||-||
    20 ||REVERSE()||Reverse the characters in a string||X||-||X||-||-||
    21 ||RIGHT()||Returns the specified rightmost number of characters||X||-||X||-||-||
    22 ||RPAD()||Appends string the specified number of times||X||X||X||-||-||
    23 ||LTRIM()||Removes leading spaces||X||X||X||X||[https://github.com/django/django/pull/9220 9220]||
    24 ||RTRIM()||Removes trailing spaces||X||X||X||X||[https://github.com/django/django/pull/9220 9220]||
    25 ||TRIM()||Removes leading and trailing spaces||X||X||X||X||[https://github.com/django/django/pull/9220 9220]||
    26 \\
    2710||||||||||||||= **Math** =||
    28 ||Name||Description||PostgreSQL||Oracle||MySQL||SQLite||PR||
     11||**Name**||**Description**||**PostgreSQL**||**Oracle**||**MySQL**||**SQLite**||**PR**||
    2912||ABS()||Returns the absolute value.||X||X||X||X||-||
    3013||ACOS()||Returns the arccosine.||X||X||X||-||-||
     
    4326||POWER()||Returns the value of one expression raised to the power of another expression||X||X||X||-||-||
    4427||RADIANS()||Returns the value of an expression converted from degrees to radians.||X||X||X||-||-||
    45 ||ROUND()||Returns a numeric expression rounded to an integer. Can be used to round an expression to a number of decimal points||X||X||X||X||-||
     28||ROUND()||Returns a numeric expression rounded to an integer.\\Can be used to round an expression to a number of decimal points||X||X||X||X||-||
    4629||SIN()||Returns the sine given in radians.||X||X||X||-||-||
    4730||SQRT()||Returns the square root.||X||X||X||-||-||
    4831||TAN()||Returns the tangent expressed in radians.||X||X||X||-||-||
     32||||||||||||||= **Text** =||
     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||-||-||
     37||LPAD()||Returns the string argument, left-padded with the specified string||X||X||X||-||-||
     38||LTRIM()||Removes leading spaces||X||X||X||X||[https://github.com/django/django/pull/9220 9220]||
     39||MD5()||Calculates the MD5 hash of string, returning the result in hexadecimal||X||-||-||-||-||
     40||REPEAT()||Repeats a string the specified number of times||X||-||X||-||-||
     41||REPLACE()||Replaces occurrences of a specified string||X||X||X||X||-||
     42||REVERSE()||Reverse the characters in a string||X||-||X||-||-||
     43||RIGHT()||Returns the specified rightmost number of characters||X||-||X||-||-||
     44||RPAD()||Appends string the specified number of times||X||X||X||-||-||
     45||RTRIM()||Removes trailing spaces||X||X||X||X||[https://github.com/django/django/pull/9220 9220]||
     46||TRIM()||Removes leading and trailing spaces||X||X||X||X||[https://github.com/django/django/pull/9220 9220]||
Back to Top